| Value | Description |
|---|---|
| ietfPascal | In this case the format is as follows: const 'FileName_Extension_Size' = nnnn; 'FileName_Extension' : array[0 .. 'FileName_Extension_Size' - 1] of Byte = ( $xx,$xx ); This is useful when you want to embed the image inside a .pas file. You can load back the image by writing: ImageEnView1.IO.LoadFromBuffer( FileName_Extension, FileName_Extension_Size, fileformat ); |
| ietfHex | Save the image as a sequence of hex values. Example: 0xaa, 0xbb, etc... |
| ietfBase64 | Save the image encoded with base 64 (the base of Mime64). Example: /9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAYEBQYF... |
| ietfASCIIArt | Save the image as an ASCII art. We suggest you sub-sample the image before save as ASCII art. The ImageFormat field of SaveToText must be ioUnknown |