StiPdfExportSettings explanation
-
- Posts: 6
- Joined: Thu Dec 02, 2010 12:00 am
- Location: Sydney
StiPdfExportSettings explanation
The help is a tad thin. I would like to make the PDF as small (low quality) as possible. How can I juggle the various settings, fonts I use etc to achieve the smallest PDF size.
StiPdfExportSettings explanation
Hello,
Please try the following export settings:
Thank you.
Please try the following export settings:
Code: Select all
StiPdfExportSettings exportSettings = new StiPdfExportSettings();
exportSettings.Compressed = true;
exportSettings.EmbeddedFonts = false;
exportSettings.ImageCompressionMethod = StiPdfImageCompressionMethod.Jpeg;
exportSettings.ImageQuality = 0.4;
exportSettings.ImageResolution = 50;
-
- Posts: 6
- Joined: Thu Dec 02, 2010 12:00 am
- Location: Sydney
StiPdfExportSettings explanation
Thanks. That helped quite a bit. I experimented and left imaeg quality at the default with a much better PDF at very little size growth.
Cheers
Cheers
StiPdfExportSettings explanation
Hello,
Ok!
Let us know if you need any additional help.
Thank you.
Ok!
Let us know if you need any additional help.
Thank you.