Click or drag to resize

IMcStreamResolutionSizes Property

Read-only property returning a list of resolution descriptions.

Namespace:  MediaCy.IQL.IO
Assembly:  MediaCy.IQL.IO (in MediaCy.IQL.IO.dll) Version: 10.0.6912.0
Syntax
VB
ReadOnly Property ResolutionSizes As Object
	Get

Return Value

Type: Object
Array of Strings
Remarks
TIFF and PCD files have the ability to store different resolutions of the same image. For TIFF, these files appear to be Sequences (multi-frame images), until further investigation shows each frame to be of a different size. Such sequences are not allowed and so the user must choose which one of the resolutions to open out of the file. These types of TIFF files are named Multiple Resolution TIFF's. This method allows a client to query for a list of Width X Height strings (e.g. "160 x 120"), so that the User may choose which resolution to open. Each member of the returned Array will be a String containing the Width, followed by the character 'x' followed by the Height. This library does not support writing of Multiple Resolution files, and so this is a read-only property.
See Also