LFileSettings::GetWMFResolution

Summary

Gets the current DPI (dots per inch) value that LEADTOOLS uses when loading WMF/EMF files.

Syntax

#include "ltwrappr.h"

static L_INT LFileSettings::GetWMFResolution (lpXResolution, lpYResolution)

Parameters

L_INT * lpXResolution

Pointer to a variable to be updated with the current value that LEADTOOLS uses for WMF/EMF horizontal resolution.

L_INT * lpYResolution

Pointer to a variable to be updated with the current value that LEADTOOLS uses for WMF/EMF vertical resolution.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

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.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

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 Version 22.0.2023.2.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.