virtual L_INT LBitmapBase::PointFromBitmap(nViewPerspective, px, py)
Translates a point (x,y) from the class object's bitmap view perspective to the specified view perspective.
Destination view perspective to which the point should be translated.
Address of variable for the X coordinate of the point.
Address of variable for the Y coordinate of the point.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
To use this function, do the following:
Declare variables for the X and Y coordinates of a point.
Assign the values of a known point in the bitmap.
Call this function, passing the addresses of the variables, and specifying the destination view perspective. (The function gets the source view perspective from the bitmap handle.)
Get the translated point from the variables, which this function has updated.
For general information about view perspectives, refer to Accounting for View Perspective.
Win32, x64.
L_INT LBitmapBase__PointFromBitmapExample()
{
L_INT nRet;
LBitmapBase MyBitmap;
L_INT npx=20, npy=30;
nRet =MyBitmap.Load(MAKE_IMAGE_PATH(TEXT("image1.cmp")),24);
if(nRet !=SUCCESS)
return nRet;
nRet =MyBitmap.PointFromBitmap(BOTTOM_LEFT, &npx, &npy);
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