Search in sources :

Example 1 with RandomAccessRead

use of org.apache.pdfbox.io.RandomAccessRead in project pdfbox by apache.

the class PDDocument method load.

/**
 * Parses a PDF. Depending on the memory settings parameter the given input
 * stream is either copied to memory or to a temporary file to enable
 * random access to the pdf.
 *
 * @param input stream that contains the document.
 * @param password password to be used for decryption
 * @param keyStore key store to be used for decryption when using public key security
 * @param alias alias to be used for decryption when using public key security
 * @param memUsageSetting defines how memory is used for buffering input stream and PDF streams
 *
 * @return loaded document
 *
 * @throws InvalidPasswordException If the password is incorrect.
 * @throws IOException In case of a reading or parsing error.
 */
public static PDDocument load(InputStream input, String password, InputStream keyStore, String alias, MemoryUsageSetting memUsageSetting) throws IOException {
    ScratchFile scratchFile = new ScratchFile(memUsageSetting);
    try {
        RandomAccessRead source = scratchFile.createBuffer(input);
        PDFParser parser = new PDFParser(source, password, keyStore, alias, scratchFile);
        parser.parse();
        return parser.getPDDocument();
    } catch (IOException ioe) {
        IOUtils.closeQuietly(scratchFile);
        throw ioe;
    }
}
Also used : RandomAccessRead(org.apache.pdfbox.io.RandomAccessRead) ScratchFile(org.apache.pdfbox.io.ScratchFile) PDFParser(org.apache.pdfbox.pdfparser.PDFParser) IOException(java.io.IOException)

Example 2 with RandomAccessRead

use of org.apache.pdfbox.io.RandomAccessRead in project pdfbox by apache.

the class PDDocument method load.

/**
 * Parses a PDF.
 *
 * @param input byte array that contains the document.
 * @param password password to be used for decryption
 * @param keyStore key store to be used for decryption when using public key security
 * @param alias alias to be used for decryption when using public key security
 * @param memUsageSetting defines how memory is used for buffering input stream and PDF streams
 *
 * @return loaded document
 *
 * @throws InvalidPasswordException If the password is incorrect.
 * @throws IOException In case of a reading or parsing error.
 */
public static PDDocument load(byte[] input, String password, InputStream keyStore, String alias, MemoryUsageSetting memUsageSetting) throws IOException {
    ScratchFile scratchFile = new ScratchFile(memUsageSetting);
    RandomAccessRead source = new RandomAccessBuffer(input);
    PDFParser parser = new PDFParser(source, password, keyStore, alias, scratchFile);
    parser.parse();
    return parser.getPDDocument();
}
Also used : RandomAccessRead(org.apache.pdfbox.io.RandomAccessRead) RandomAccessBuffer(org.apache.pdfbox.io.RandomAccessBuffer) ScratchFile(org.apache.pdfbox.io.ScratchFile) PDFParser(org.apache.pdfbox.pdfparser.PDFParser)

Aggregations

RandomAccessRead (org.apache.pdfbox.io.RandomAccessRead)2 ScratchFile (org.apache.pdfbox.io.ScratchFile)2 PDFParser (org.apache.pdfbox.pdfparser.PDFParser)2 IOException (java.io.IOException)1 RandomAccessBuffer (org.apache.pdfbox.io.RandomAccessBuffer)1