ImageGear Professional v18.2 > User Guide > Using ImageGear > Using ImageGear PDF Component > PDF Format Filter > PostScript Filter Control Parameters > TEXT_ENCODING |
(Used with PostScript write only.) This parameter specifies which encoding scheme should be used to convert binary image data to the text format when saving raster image into the PostScript document.
UINT
Valid Values: One of the following:
Default Value: IG_PDF_TEXTENC_ASCII_85 = 2
Copy Code
|
|
---|---|
Dim currentFormat As IGFormatParams
Dim currentParameter As IGControlParameter
Set currentFormat =
frmMain.IGFormatsCtl1.Settings.Format(Index)
Set currentParameter =
currentFormat.GetParamCopy("TEXT_ENCODING")
currentParameter.value.Long = IG_PDF_TEXTENC_NONE
currentFormat.UpdateParamFrom currentParameter
|