#include "l_bitmap.h"
L_LTKRN_API L_INT L_PointToBitmap(pBitmap, ViewPerspective, px, py)
Translates a point (x,y) from the specified view perspective to the bitmap's view perspective.
Pointer to the bitmap handle referencing the target bitmap.
Source view perspective from 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:
For general information about view perspectives, refer to Accounting for View Perspective.
Required DLLs and Libraries
Win32, x64, Linux.
This example finds out where a point in the TOP_LEFT90 ViewPerspective actually is in the bitmap
L_INT PointToBitmapExample(pBITMAPHANDLE LeadBitmap,L_INT* nX,L_INT* nY)
{
L_INT nRet;
nRet = L_PointToBitmap ( LeadBitmap, TOP_LEFT90, nX, nY);
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