Type Default Value Read Only Description
Long   75 No The output file quality for lossy compression.

 

   

Notes
 

This property determines the quality of the output image.

It can take values between 0 and 100 ranging from the lowest to the highest quality.

This property is used for JPEG output only.

 

   

Example
 

The following example shows the effect that this parameter has on PDF rendering.

Set theDoc = Server.CreateObject("ABCpdf12.Doc")
theDoc.Read "c:\mypics\SpaceShuttlePage6.pdf"
theDoc.Rendering.DotsPerInch = 36
' Save at low quality
theDoc.Rendering.SaveQuality = 5
theDoc.Rendering.Save "c:\mypdfs\RenderingQuality5.jpg"
' Save at high quality
theDoc.Rendering.SaveQuality = 75
theDoc.Rendering.Save "c:\mypdfs\RenderingQuality75.jpg"
theDoc.Clear


RenderingQuality5.jpg [file size 9.26 KB]


RenderingQuality5.jpg [file size 37.3 KB]