You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by Shital Mehta <sm...@gmail.com> on 2012/09/24 05:05:30 UTC

Getting problems in rendering multiple master fonts

Hi,

PDFToImage fails to render pdfs containing multiple master fonts. I
see following in the logs:
org.apache.pdfbox.pdmodel.font.PDSimpleFont getawtFont
SEVERE: Not yet implemented:org.apache.pdfbox.pdmodel.font.PDMMType1Font

I see that there is an implementation of PDMMType1Font which extends
PDSimpleFont. But getawtFont() in PDSimpleFont shows that it is not
implemented yet.

public Font getawtFont() throws IOException
    {
        LOG.error("Not yet implemented:" + getClass().getName() );
        return null;
    }

Any ideas on what needs to be done to get it working?

I am using latest git trunk.

Thanks,

Shital