The
Tiff type is used to define the advanced characteristics of a TIFF image. The characteristics of this type can be defined and changed using different WLanguage properties.
Remark: For more details on the declaration of this type of variable and the use of WLanguage properties, see
Declaring a variable.
// Load the file
MyTiff is Tiff = "MyFile.tiff"
// Replace the first page
MyTiff..Image[1] = "C:\MyImages\logo48.gif"
// Save the file
dSaveImageTIFF(MyTiff, "MyModifiedFile.tiff")
Remarks
Properties specific to Tiff variables
The following properties can be used to handle an image in Tiff format:
| | |
Property name | Type used | Effect |
---|
Image | Array of Image | Array containing the images for each page of TIFF file. |
Value | Image (memo) | Value of the image. This property is used to load a Tiff image from a buffer, a file or a memo. |
WLanguage functions that use Tiff variables