static L_INT LFileSettings::GetWMFResolution (lpXResolution, lpYResolution)
Gets the current DPI (dots per inch) value that LEADTOOLS uses when loading WMF/EMF files.
Pointer to a variable to be updated with the current value that LEADTOOLS uses for WMF/EMF horizontal resolution.
Pointer to a variable to be updated with the current value that LEADTOOLS uses for WMF/EMF vertical resolution.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Before calling this function, the user must declare two variables of L_INT data type, and then pass the addresses of these variables as the lpXResolution and lpYResolution parameters, and then the function will update these values with the current values that LEADTOOLS uses for WMF/EMF resolutions.
For an explanation of how LEADTOOLS uses the WMF/EMF file resolution values, refer to LFileSettings::SetWMFResolution function.
Note: More options are available in the LOADFILEOPTION structure.
Win32, x64.
L_INT LFileSettings__GetWMFResolutionExample()
{
L_INT nRet;
LFileSettings fileSettings;
L_INT XResolution;
L_INT YResolution;
nRet = fileSettings.GetWMFResolution(&XResolution,&YResolution);
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