All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jpedal.parser.DecodeStatus Maven / Gradle / Ivy

/*
 * ===========================================
 * Java Pdf Extraction Decoding Access Library
 * ===========================================
 *
 * Project Info:  http://www.idrsolutions.com
 * Help section for developers at http://www.idrsolutions.com/support/
 *
 * (C) Copyright 1997-2017 IDRsolutions and Contributors.
 *
 * This file is part of JPedal/JPDF2HTML5
 *
 @LICENSE@
 *
 * ---------------
 * DecodeStatus.java
 * ---------------
 */
package org.jpedal.parser;

/*
 * flags which can return values after page decode
 */
public class DecodeStatus {

    /**
     * indicate if last decodePage() call had any issues
     */
    public static final int PageDecodingSuccessful = 1;

    public static final int ImagesProcessed = 2;

    public static final int NonEmbeddedCIDFonts = 4;

    public static final int YCCKImages = 8;

    /**
     * whether any fonts will almost certainly need hinting turned on
     */
    public static final int TTHintingRequired = 32;

    public static final int TooManyShapes = 64;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy