virtual L_INT LAnnotation::GetArea(puCount)
Gets the pixel count of the specified annotation object.
Address of the variable to be updated with the pixel count.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
The pixel count is the number of pixels contained in a region extracted from the annotation object, without resizing. It is equivalent to calling LAnnotation::GetRgnHandle with pRgnXForm set to NULL and then getting a pixel count of the resulting region.
Win32, x64.
L_INT LAnnotation_GetAreaExample()
{
LBitmap MyBitmap;
ANNRECT annRect;
L_SIZE_T uCount;
LAnnRectangle MyAnnRectangle;
annRect.left = 50;
annRect.top = 50;
annRect.right = 150;
annRect.bottom = 150;
MyAnnRectangle.SetRect(&annRect);
//Area = 101 x 101
MyAnnRectangle.GetArea(&uCount);
HRGN hRgn;
RECT rect;
//Bounding rectangle is (50,50,151,151)
MyAnnRectangle.GetRgnHandle(&hRgn);
GetRgnBox(hRgn, &rect);
DeleteObject(hRgn);
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