Package org.apache.pdfbox.preflight.font.container

Examples of org.apache.pdfbox.preflight.font.container.TrueTypeContainer


public class TrueTypeFontValidator extends SimpleFontValidator<TrueTypeContainer>
{
    public TrueTypeFontValidator(PreflightContext context, PDTrueTypeFont font)
    {
        super(context, font, font.getCOSObject(), new TrueTypeContainer(font));
    }
View Full Code Here


public class TrueTypeFontValidator extends SimpleFontValidator<TrueTypeContainer>
{

    public TrueTypeFontValidator(PreflightContext context, PDFont font)
    {
        super(context, font, new TrueTypeContainer(font));
    }
View Full Code Here

TOP

Related Classes of org.apache.pdfbox.preflight.font.container.TrueTypeContainer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.