embedded fonts error
Hi,
can anyone help..
I'm trying to export report to a secure pdf and dont want to embedded the font.
here is the code I used :
frxPDFExport1.FileName := 'test.pdf';
frxPDFExport1.ProtectionFlags := [ePrint];
frxPDFExport1.OwnerPassword := 'test';
frxPDFExport1.EmbeddedFonts := false;
frxPDFExport1.ShowDialog := false;
frxReport1.PrepareReport(true);
frxReport1.Export(frxPDFExport1);
when I execute the code the output file is secure pdf but the font still embedded to the file so the file size is very big. When I set the OwnerPassword to empty the file is not secure and the document didnt embedded the fonts.
Is this a bug or I have mist something...
please help
regards,
Zulfikar
can anyone help..
I'm trying to export report to a secure pdf and dont want to embedded the font.
here is the code I used :
frxPDFExport1.FileName := 'test.pdf';
frxPDFExport1.ProtectionFlags := [ePrint];
frxPDFExport1.OwnerPassword := 'test';
frxPDFExport1.EmbeddedFonts := false;
frxPDFExport1.ShowDialog := false;
frxReport1.PrepareReport(true);
frxReport1.Export(frxPDFExport1);
when I execute the code the output file is secure pdf but the font still embedded to the file so the file size is very big. When I set the OwnerPassword to empty the file is not secure and the document didnt embedded the fonts.
Is this a bug or I have mist something...
please help
regards,
Zulfikar
Comments
we are planing to buy the FR, but right now our user want to see that FR can produce the report they want.
So if we buy the report, this bug will not happen in the release version right?
Is it?
because I have some pdf file that secured but no font was embedded. Right now my work arround solution is I add security for pdf generated by FR using another 3rd party program. But I hope this is only temporary solution until FR team can solve this problem....