TIOParams.EXIF_YResolution
Declaration
property EXIF_YResolution: Double;
Description
Returns the vertical resolution of the image. The default value is 1/72 inch (one "point"), but it is largely meaningless as personal computers typicaly don't use this value for display/printing.
Note: Use
EXIF_YResolution2 for easier access to the value.
See Also
◼EXIF_XResolution◼EXIF_ResolutionUnit◼EXIF_YResolution2// Get as string value
sExifYResolution := DoubleToFraction( ImageEnView1.IO.Params.EXIF_YResolution );
// Write string value
// Note: Assumes a value formatted as a fraction, e.g. '1/72'
ImageEnView1.IO.Params.EXIF_YResolution := FractionToDouble( sExifYResolution );