Large PDF size
Hi,
I used FR version 3.24 with Delphi 2006 and produced PDFs had size around 180KB.
After switching to XE2 and FR 4.12 my PDFs have size around 1MB.
This is big problem for me because I have users who are sending thousands of PDFs every day and are complaining about speed.
I used this properties to reduce PDF size but with this I can't be sure that PDF on all PCs will be shown correctly.
....EmbeddedFonts :=False;
.....EmbedFontsIfProtected :=False;
What do You recommend me to do?
regards
Davor
I used FR version 3.24 with Delphi 2006 and produced PDFs had size around 180KB.
After switching to XE2 and FR 4.12 my PDFs have size around 1MB.
This is big problem for me because I have users who are sending thousands of PDFs every day and are complaining about speed.
I used this properties to reduce PDF size but with this I can't be sure that PDF on all PCs will be shown correctly.
....EmbeddedFonts :=False;
.....EmbedFontsIfProtected :=False;
What do You recommend me to do?
regards
Davor
Comments
It is the fonts which are embedded in the PDF with all the characters the font has which makes it so big.
If you can, make sure that you use the same font throughout your report. You can change the font size but not use bold or italics.
In this way only one font has to be embedded in the PDF.
Font size is achieved through vector scaling, so no additional embedded information.
Davor