public class PDFParser extends AbstractParser
EmbeddedDocumentExtractor
to handle them.
As of Tika 1.6, it is possible to extract inline images with
the EmbeddedDocumentExtractor
as if they were regular
attachments. By default, this feature is turned off because of
the potentially enormous number and size of inline images. To
turn this feature on, see
PDFParserConfig.setExtractInlineImages(boolean)
.Modifier and Type | Field and Description |
---|---|
static String |
PASSWORD
Deprecated.
Supply a
PasswordProvider on the ParseContext instead |
Constructor and Description |
---|
PDFParser() |
Modifier and Type | Method and Description |
---|---|
boolean |
getEnableAutoSpace()
Deprecated.
|
boolean |
getExtractAnnotationText()
Deprecated.
|
PDFParserConfig |
getPDFParserConfig() |
boolean |
getSortByPosition()
Deprecated.
|
Set<MediaType> |
getSupportedTypes(ParseContext context)
Returns the set of media types supported by this parser when used
with the given parse context.
|
boolean |
getSuppressDuplicateOverlappingText()
Deprecated.
|
boolean |
getUseNonSequentialParser()
Deprecated.
|
void |
parse(InputStream stream,
ContentHandler handler,
Metadata metadata,
ParseContext context)
Parses a document stream into a sequence of XHTML SAX events.
|
void |
setEnableAutoSpace(boolean v)
Deprecated.
|
void |
setExtractAnnotationText(boolean v)
Deprecated.
|
void |
setPDFParserConfig(PDFParserConfig config) |
void |
setSortByPosition(boolean v)
Deprecated.
|
void |
setSuppressDuplicateOverlappingText(boolean v)
Deprecated.
|
void |
setUseNonSequentialParser(boolean v)
Deprecated.
|
parse
public static final String PASSWORD
public Set<MediaType> getSupportedTypes(ParseContext context)
Parser
context
- parse contextpublic void parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context) throws IOException, SAXException, TikaException
Parser
The given document stream is consumed but not closed by this method. The responsibility to close the stream remains on the caller.
Information about the parsing context can be passed in the context parameter. See the parser implementations for the kinds of context information they expect.
stream
- the document stream (input)handler
- handler for the XHTML SAX events (output)metadata
- document metadata (input and output)context
- parse contextIOException
- if the document stream could not be readSAXException
- if the SAX events could not be processedTikaException
- if the document could not be parsedpublic PDFParserConfig getPDFParserConfig()
public void setPDFParserConfig(PDFParserConfig config)
public boolean getUseNonSequentialParser()
getPDFParserConfig()
setUseNonSequentialParser(boolean)
public void setUseNonSequentialParser(boolean v)
setPDFParserConfig(PDFParserConfig)
public boolean getEnableAutoSpace()
getPDFParserConfig()
setEnableAutoSpace(boolean)
public void setEnableAutoSpace(boolean v)
setPDFParserConfig(PDFParserConfig)
public boolean getExtractAnnotationText()
getPDFParserConfig()
public void setExtractAnnotationText(boolean v)
setPDFParserConfig(PDFParserConfig)
public boolean getSuppressDuplicateOverlappingText()
getPDFParserConfig()
public void setSuppressDuplicateOverlappingText(boolean v)
setPDFParserConfig(PDFParserConfig)
public boolean getSortByPosition()
getPDFParserConfig()
setSortByPosition(boolean)
public void setSortByPosition(boolean v)
setPDFParserConfig(PDFParserConfig)
Copyright © 2007-2015 The Apache Software Foundation. All Rights Reserved.