public interface PreflightResults
Modifier and Type | Method and Description |
---|---|
void |
addResultAnnotations()
Deprecated.
- use PDFPreflight.addResultAnnotations(PreflightResults)
|
void |
appendPreflightReport(int pageWidth,
int pageHeight)
Deprecated.
- use PDFPreflight.appendPreflightReport(PreflightResults, int, int, PreflightReportOptions)
|
void |
echoResults()
Echoes the result records to the console.
|
void |
echoResults(PrintStream out)
Echos the result records to a given print stream.
|
DocumentInfo |
getDocumentInfo()
Deprecated.
- use PDFPreflight.getDocumentInfo()
|
PreflightInfo |
getPFInfo()
Returns a PreflightInfo object that holds information about the preflight
run that created this results.
|
List<ResultRecord> |
getResults()
Gets a list of result records.
|
boolean |
isSuccessful()
Returns a boolean value indicating whether the document that was preflighted
successfully passed the given Profile specification.
|
void |
savePreflightReport(OutputStream outStream,
int pageWidth,
int pageHeight)
Deprecated.
- use PreflightResults.savePreflightReport(OutputStream, int, int, PreflightReportOptions)
|
void |
savePreflightReport(OutputStream outStream,
int pageWidth,
int pageHeight,
PreflightReportOptions reportOptions)
Saves a Preflight report as a PDF document to an OutputStream.
|
void |
savePreflightReport(String fileName,
int pageWidth,
int pageHeight)
Deprecated.
- use PreflightResults.savePreflightReport(String, int, int, PreflightReportOptions)
|
void |
savePreflightReport(String fileName,
int pageWidth,
int pageHeight,
PreflightReportOptions reportOptions)
Saves a Preflight report as a PDF document to a file.
|
List<ResultRecord> getResults()
void echoResults()
void echoResults(PrintStream out)
out
- The output print stream to echo the results to.PreflightInfo getPFInfo()
@Deprecated DocumentInfo getDocumentInfo()
boolean isSuccessful()
@Deprecated void addResultAnnotations() throws PDFException
PDFException
@Deprecated void appendPreflightReport(int pageWidth, int pageHeight) throws PDFException, IOException
pageWidth
- Width of the report pages, in points. Points are defined to be 72 DPI so an 8.5 in x 11 in standard US Letter page
would have a width of 612, and a 210 mm x 297 mm standard European A4 page would have a width of 595.pageHeight
- Height of the report pages, in points. Points are defined to be 72 DPI so an 8.5 in x 11 in standard US Letter page
would have a height of 792, and a 210 mm x 297 mm standard European A4 page would have a height of 842.IOException
PDFException
void savePreflightReport(OutputStream outStream, int pageWidth, int pageHeight) throws PDFException, IOException
outStream
- OutputStream where the report document will be written to.pageWidth
- Width of the report pages, in points. Points are defined to be 72 DPI so an 8.5 in x 11 in page
would have a width of 612, and a 210 mm x 297 mm standard European A4 page would have a width of 595.pageHeight
- Height of the report pages, in points. Points are defined to be 72 DPI so an 8.5 in x 11 in page
would have a height of 792, and a 210 mm x 297 mm standard European A4 page would have a height of 842.IOException
PDFException
void savePreflightReport(OutputStream outStream, int pageWidth, int pageHeight, PreflightReportOptions reportOptions) throws PDFException, IOException
outStream
- OutputStream where the report document will be written to.pageWidth
- Width of the report pages, in points. Points are defined to be 72 DPI so an 8.5 in x 11 in page
would have a width of 612, and a 210 mm x 297 mm standard European A4 page would have a width of 595.pageHeight
- Height of the report pages, in points. Points are defined to be 72 DPI so an 8.5 in x 11 in page
would have a height of 792, and a 210 mm x 297 mm standard European A4 page would have a height of 842.reportOptions
- PreflightReportOptions that determine the format of what to include in the reportIOException
PDFException
void savePreflightReport(String fileName, int pageWidth, int pageHeight) throws PDFException, IOException
fileName
- Name of the file to save the document.pageWidth
- Width of the report pages, in points. Points are defined to be 72 DPI so an 8.5 in x 11 in page
would have a width of 612, and a 210 mm x 297 mm standard European A4 page would have a width of 595.pageHeight
- Height of the report pages, in points. Points are defined to be 72 DPI so an 8.5 in x 11 in page
would have a height of 792, and a 210 mm x 297 mm standard European A4 page would have a height of 842.IOException
PDFException
void savePreflightReport(String fileName, int pageWidth, int pageHeight, PreflightReportOptions reportOptions) throws PDFException, IOException
fileName
- Name of the file to save the document.pageWidth
- Width of the report pages, in points. Points are defined to be 72 DPI so an 8.5 in x 11 in page
would have a width of 612, and a 210 mm x 297 mm standard European A4 page would have a width of 595.pageHeight
- Height of the report pages, in points. Points are defined to be 72 DPI so an 8.5 in x 11 in page
would have a height of 792, and a 210 mm x 297 mm standard European A4 page would have a height of 842.reportOptions
- PreflightReportOptions that determine the format of what to include in the reportIOException
PDFException