Hi,
I use FPDF_RenderPage to print PDF file on Windows platform. It create a much larger rendered data file than Adobe Reader for some files. I use same printer driver (PCL6) for both testing.
After comparing the rendered data files, it seems the reason is that PDFium render text as basic elements (such as Path, Point and BoundingBox etc) instead of Font as Adobe Reader does.
Is there a way to configure PDFium rendering text as Font? I noticed there is a "m_pUserFontPaths" in "FPDF_LIBRARY_CONFIG" which can be used to initialize PDFium library. But not sure how to use it.
By the way, fonts in the testing file include "Arial-BoldMT", "Arial-ItalicMT", ArialMT and Calibri.
Thanks for any help!