virtual L_INT LBitmap::GetRgnPerimeterLength (pXForm, puLength, uFlags = 0)
Computes the length of the perimeter of a region.
Pointer to an RGNXFORM structure that LEADTOOLS uses to translate between display coordinates and bitmap coordinates.
If you specify NULL in this parameter, the scalar fields default to 1, the offsets default to 0, and the view perspective defaults to the bitmap's view perspective.
Address of a variable to be updated with the perimeter length of the region. The length is expressed in pixels.
Reserved for future use. Must be 0.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
This function works only on bitmaps having a region. If a bitmap does not have a region the function returns the error: Not Initialized.
To update a status bar or detect a user interrupt during execution of this function, refer to LBase::EnableStatusCallback.
This function supports 12 and 16-bit grayscale and 48 and 64-bit color images. Support for 12 and 16-bit grayscale and 48 and 64-bit color images is available only in the Document/Medical toolkits.
This function supports signed data images.
Win32, x64.
L_INT LBitmap__GetRgnPerimeterLengthExample(LBitmap *pLeadBitmap)
{
L_INT nRet;
RECT rcRect;
L_SIZE_T uPerimeter;
rcRect.top = pLeadBitmap->GetHeight ()/3;
rcRect.bottom = pLeadBitmap->GetHeight ()*2/3;
rcRect.left = pLeadBitmap->GetWidth ()/3;
rcRect.right = pLeadBitmap->GetWidth ()*2/3;
nRet =pLeadBitmap->Region()->SetRgnEllipse (&rcRect);
if(nRet !=SUCCESS)
return nRet;
nRet =pLeadBitmap->GetRgnPerimeterLength(NULL, &uPerimeter);
if(nRet !=SUCCESS)
return nRet;
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document