This utility converts resolution data into new units.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_util_resolution_units_convert( AT_RESOLUTION* Resolution, enumIGResolutionUnits NewUnits ); |
Name | Type | Description |
---|---|---|
Resolution | AT_RESOLUTION* | Pointer to structure containing resolution info. |
NewUnits | enumIGResolutionUnits | New resolution units. |
Returns the number of ImageGear errors that occurred during this function call. If there are no errors, the return value is IGE_SUCCESS.
This function does not process image pixels.
Filters
Copy Code
|
|
---|---|
// Initialize resolution as 300 DPI AT_RESOLUTION Resolution = {300, 1, 300, 1, IG_RESOLUTION_INCHES}; // Convert into PPM enumIGResolutionUnits NewUnits = IG_RESOLUTION_METERS; IG_util_resolution_units_convert(&Resolution, NewUnits); |