ImageEn

TImageEnIO.SaveToFileTIFF Code Samples


Code samples for SaveToFileTIFF.
Automatically generated by the Every Method demo.
// Automated test of SaveToFileTIFF (Compression comparison) - Typical Values
// SaveToFileTIFF - ioTIFF_UNCOMPRESSED - File Size: 468 KB
IEGlobalSettings().AutoSetBitDepth := True;
ImageEnView1.IO.Params.TIFF_Compression := ioTIFF_UNCOMPRESSED' );
ImageEnView1.IO.SaveToFileTIFF( 'D:\Image.tiff' );



// Automated test of SaveToFileTIFF (Compression comparison) - Alpha Channel - Typical Values
// SaveToFileTIFF - ioTIFF_UNCOMPRESSED - File Size: 625 KB
IEGlobalSettings().AutoSetBitDepth := True;
ImageEnView1.IO.Params.TIFF_Compression := ioTIFF_UNCOMPRESSED' );
ImageEnView1.IO.SaveToFileTIFF( 'D:\Image.tiff' );



// Automated test of SaveToFileTIFF (Compression comparison) - 32-Bit RGBA - Typical Values
// SaveToFileTIFF - ioTIFF_UNCOMPRESSED - File Size: 625 KB
IEGlobalSettings().AutoSetBitDepth := True;
ImageEnView1.IO.Params.TIFF_Compression := ioTIFF_UNCOMPRESSED' );
ImageEnView1.IO.SaveToFileTIFF( 'D:\Image.tiff' );



// Automated test of SaveToFileTIFF (Compression comparison) - 1-bit - Typical Values
// SaveToFileTIFF - ioTIFF_UNCOMPRESSED - File Size: 19 KB
IEGlobalSettings().AutoSetBitDepth := True;
ImageEnView1.IO.Params.TIFF_Compression := ioTIFF_UNCOMPRESSED' );
ImageEnView1.IO.SaveToFileTIFF( 'D:\Image.tiff' );



// Automated test of SaveToFileTIFF (Compression comparison) - Random Values
// SaveToFileTIFF - ioTIFF_LZW - File Size: 290 KB
IEGlobalSettings().AutoSetBitDepth := True;
ImageEnView1.IO.Params.TIFF_Compression := ioTIFF_LZW' );
ImageEnView1.IO.SaveToFileTIFF( 'D:\Image.tiff' );



// Automated test of SaveToFileTIFF (Compression comparison) - Alpha Channel - Random Values
// SaveToFileTIFF - ioTIFF_LZW - File Size: 458 KB
IEGlobalSettings().AutoSetBitDepth := True;
ImageEnView1.IO.Params.TIFF_Compression := ioTIFF_LZW' );
ImageEnView1.IO.SaveToFileTIFF( 'D:\Image.tiff' );



// Automated test of SaveToFileTIFF (Compression comparison) - 32-Bit RGBA - Random Values
// SaveToFileTIFF - ioTIFF_LZW - File Size: 66 KB
IEGlobalSettings().AutoSetBitDepth := True;
ImageEnView1.IO.Params.TIFF_Compression := ioTIFF_LZW' );
ImageEnView1.IO.SaveToFileTIFF( 'D:\Image.tiff' );



// Automated test of SaveToFileTIFF (Compression comparison) - 1-bit - Random Values
// SaveToFileTIFF - ioTIFF_LZW - File Size: 5 KB
IEGlobalSettings().AutoSetBitDepth := True;
ImageEnView1.IO.Params.TIFF_Compression := ioTIFF_LZW' );
ImageEnView1.IO.SaveToFileTIFF( 'D:\Image.tiff' );