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]
|