Package com.geniusscansdk.pdf
Class TIFFGenerator
- java.lang.Object
-
- com.geniusscansdk.pdf.TIFFGenerator
-
public abstract class TIFFGenerator extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description TIFFGenerator()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static TIFFGenerator
createWithDocument(PDFDocument document, Logger logger)
Instantiate a new TIFF generatorabstract PDFGeneratorError
generateTIFF(java.lang.String outputFile)
Generates a TIFF file at the given output location.
-
-
-
Method Detail
-
generateTIFF
public abstract PDFGeneratorError generateTIFF(java.lang.String outputFile)
Generates a TIFF file at the given output location.- Returns:
- a PDFGeneratorError enum object. If the generation was successful, this object will be set to the success case.
-
createWithDocument
public static TIFFGenerator createWithDocument(PDFDocument document, Logger logger)
Instantiate a new TIFF generator- Parameters:
document
- A PDFDocument object that describes the structure of the TIFF file to construct. It contains all the pages and the metadata that will be set in the TIFF file.logger
- An injected logger
-
-