The output format for SaveAsText method.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public enum IETextFileFormat
Public Enumeration IETextFileFormat
public enum class IETextFileFormat

Members

MemberValueDescription
Pascal0

In this case the format is like:

CopyC#
const
'FileName_Extension_Size' = nnnn;
'FileName_Extension' : array [0..'FileName_Extension_Size'-1] of byte = ( $xx,$xx );

This is useful when you want embed the image inside a .pas file.

HEX1

Saves the image as a sequence of hex values. Example:

0xaa,0xbb,etc...

Base642

Saves the image encoded with base 64 (the base of Mime64). Example:

/9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAYEBQYF....

ASCIIArt3

Saves the image as an ascii art.

We suggest to subsample the image before save as ascii art. ImageFormat field must be "Unknown".

See Also