org.jpedal.parser.DecodeStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OpenViewerFX Show documentation
Show all versions of OpenViewerFX Show documentation
Open Source (LGPL) JavaFX PDF Viewer for NetBeans plugin
/*
* ===========================================
* 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;
}