ImageGear Professional v18.2 > User Guide > Using ImageGear > Using ImageGear PDF Component > PDF Format Filter > PostScript Filter Control Parameters > RESOLUTION_Y |
This parameter specifies the vertical resolution in dots per inch during the PostScript/PDF document conversion into the raster image. The higher this value, the higher-quality raster image you get after rasterization. The DIB of the output raster image has this value as an Y resolution.
UINT
Valid Values: Any
Default Value: 72
Copy Code
|
|
---|---|
Dim currentFormat As IGFormatParams
Dim currentParameter As IGControlParameter
Set currentFormat =
frmMain.IGFormatsCtl1.Settings.Format(Index)
Set currentParameter =
currentFormat.GetParamCopy("RESOLUTION_Y")
currentParameter.value.Long = 300
currentFormat.UpdateParamFrom currentParameter
|