Examples of PreflightContentStream


Examples of org.apache.pdfbox.preflight.content.PreflightContentStream

    protected void validateContent(PreflightContext context, PDPage page) throws ValidationException
    {
        // TODO add this wrapper in the config object ?
        try
        {
            PreflightContentStream csWrapper = new PreflightContentStream(context, page);
            csWrapper.validPageContentStream();
        }
        catch (IOException e)
        {
            context.addValidationError(new ValidationError(ERROR_UNKOWN_ERROR, e.getMessage()));
        }
View Full Code Here

Examples of org.apache.pdfbox.preflight.content.PreflightContentStream

     * Validate the Pattern content like Color and Show Text Operators using an instance of ContentStreamWrapper.
     */
    protected void parsePatternContent(PreflightContext context, PDPage page, PDTilingPattern pattern)
            throws ValidationException
    {
        PreflightContentStream csWrapper = new PreflightContentStream(context, page);
        csWrapper.validPatternContentStream(pattern);
    }
View Full Code Here

Examples of org.apache.pdfbox.preflight.content.PreflightContentStream

     * Stream of this Form XObject.
     */
    protected void validateXObjectContent() throws ValidationException
    {
        PreflightPath vPath = context.getValidationPath();
        PreflightContentStream csWrapper = new PreflightContentStream(context, vPath.getClosestPathElement(PDPage.class));
        csWrapper.validXObjContentStream(pdXObj);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.