I’m using the PowerBuilder 2019R2 (2353) NativePDF way (PBPDF190.dll) to create PDF docs:
lds_Print.Object.DataWindow.Export.PDF.Method = NativePDF!
lds_Print.Object.DataWindow.Export.PDF.NativePDF.ImageFormat = '2' // 'PNG'
lds_Print.Object.DataWindow.Export.PDF.NativePDF.UsePrintSpec = 'Yes'
lds_Print.Object.DataWindow.Export.PDF.NativePDF.PDFStandard = 0
li_rc = lds_Print.SaveAs( "c:\temp\file.pdf", PDF!, FALSE )
I discovered that some fonts are embedded in the PDF doc and some are not. If a used font is not present at the viewers site no text is displayed when viewing the PDF doc with acrobat reader.
Is there a way to control which and how fonts are embedded?
Thanks in advance
Bernhard