public class PDFParser extends AbstractParser implements RenderingParser, Initializable
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)
.
Please note that many pdfs do not store table structures.
So you should not expect table markup for what looks like a table. It
takes significant computation to identify and then correctly extract
tables from PDFs. As of this writing, the PDFParser
extracts
text within tables, but it does not compute table cell boundaries or
table row boundaries. Please see
tabula for one project that
tries to maintain the structure of tables represented in PDFs.
If your PDFs contain marked content or tags, consider
PDFParserConfig.setExtractMarkedContent(boolean)
Modifier and Type | Field and Description |
---|---|
static MediaType |
MEDIA_TYPE |
static String |
PASSWORD
Deprecated.
Supply a
PasswordProvider on the ParseContext instead |
Constructor and Description |
---|
PDFParser() |
Modifier and Type | Method and Description |
---|---|
void |
checkInitialization(InitializableProblemHandler handler) |
float |
getAverageCharTolerance() |
float |
getDropThreshold() |
ImageGraphicsEngineFactory |
getImageGraphicsEngineFactory() |
String |
getImageStrategy() |
long |
getMaxMainMemoryBytes() |
int |
getOcrDPI() |
String |
getOcrImageFormatName() |
float |
getOcrImageQuality() |
String |
getOcrImageType() |
String |
getOcrRenderingStrategy() |
String |
getOcrStrategy() |
String |
getOcrStrategyAuto() |
protected org.apache.pdfbox.pdmodel.PDDocument |
getPDDocument(InputStream inputStream,
String password,
org.apache.pdfbox.io.MemoryUsageSetting memoryUsageSetting,
Metadata metadata,
ParseContext parseContext) |
protected org.apache.pdfbox.pdmodel.PDDocument |
getPDDocument(Path path,
String password,
org.apache.pdfbox.io.MemoryUsageSetting memoryUsageSetting,
Metadata metadata,
ParseContext parseContext) |
PDFParserConfig |
getPDFParserConfig() |
Renderer |
getRenderer() |
float |
getSpacingTolerance() |
Set<MediaType> |
getSupportedTypes(ParseContext context)
Returns the set of media types supported by this parser when used
with the given parse context.
|
void |
initialize(Map<String,Param> params)
This is a no-op.
|
boolean |
isAllowExtractionForAccessibility() |
boolean |
isCatchIntermediateExceptions() |
boolean |
isDetectAngles() |
boolean |
isEnableAutoSpace() |
boolean |
isExtractAcroFormContent() |
boolean |
isExtractActions() |
boolean |
isExtractAnnotationText()
Deprecated.
|
boolean |
isExtractBookmarksText() |
boolean |
isExtractFontNames() |
boolean |
isExtractInlineImageMetadataOnly() |
boolean |
isExtractInlineImages() |
boolean |
isExtractMarkedContent() |
boolean |
isExtractUniqueInlineImagesOnly() |
boolean |
isIfXFAExtractOnlyXFA() |
boolean |
isSetKCMS() |
boolean |
isSortByPosition()
Deprecated.
|
boolean |
isSuppressDuplicateOverlappingText()
Deprecated.
|
void |
parse(InputStream stream,
ContentHandler handler,
Metadata metadata,
ParseContext context)
Parses a document stream into a sequence of XHTML SAX events.
|
void |
setAllowExtractionForAccessibility(boolean allowExtractionForAccessibility) |
void |
setAverageCharTolerance(float averageCharTolerance) |
void |
setCatchIntermediateExceptions(boolean catchIntermediateExceptions) |
void |
setDetectAngles(boolean detectAngles) |
void |
setDropThreshold(float dropThreshold) |
void |
setEnableAutoSpace(boolean v)
If true (the default), the parser should estimate
where spaces should be inserted between words.
|
void |
setExtractAcroFormContent(boolean extractAcroFormContent) |
void |
setExtractActions(boolean extractActions) |
void |
setExtractAnnotationText(boolean v)
If true (the default), text in annotations will be
extracted.
|
void |
setExtractBookmarksText(boolean extractBookmarksText) |
void |
setExtractFontNames(boolean extractFontNames) |
void |
setExtractInlineImageMetadataOnly(boolean extractInlineImageMetadataOnly) |
void |
setExtractInlineImages(boolean extractInlineImages) |
void |
setExtractMarkedContent(boolean extractMarkedContent) |
void |
setExtractUniqueInlineImagesOnly(boolean extractUniqueInlineImagesOnly) |
void |
setIfXFAExtractOnlyXFA(boolean ifXFAExtractOnlyXFA) |
void |
setImageGraphicsEngineFactory(ImageGraphicsEngineFactory imageGraphicsEngineFactory) |
void |
setImageStrategy(String imageStrategy) |
void |
setMaxMainMemoryBytes(long maxMainMemoryBytes) |
void |
setOcrDPI(int dpi) |
void |
setOcrImageFormatName(String formatName) |
void |
setOcrImageQuality(float imageQuality) |
void |
setOcrImageType(String imageType) |
void |
setOcrRenderingStrategy(String ocrRenderingStrategy) |
void |
setOcrStrategy(String ocrStrategyString) |
void |
setOcrStrategyAuto(String ocrStrategyAuto) |
void |
setPDFParserConfig(PDFParserConfig config) |
void |
setRenderer(Renderer renderer) |
void |
setSetKCMS(boolean setKCMS) |
void |
setSortByPosition(boolean v)
If true, sort text tokens by their x/y position
before extracting text.
|
void |
setSpacingTolerance(float spacingTolerance) |
void |
setSuppressDuplicateOverlappingText(boolean v)
If true, the parser should try to remove duplicated
text over the same region.
|
parse
public static final String PASSWORD
PasswordProvider
on the ParseContext
insteadpublic static final MediaType MEDIA_TYPE
public Set<MediaType> getSupportedTypes(ParseContext context)
Parser
getSupportedTypes
in interface 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.
parse
in interface Parser
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 parsedprotected org.apache.pdfbox.pdmodel.PDDocument getPDDocument(InputStream inputStream, String password, org.apache.pdfbox.io.MemoryUsageSetting memoryUsageSetting, Metadata metadata, ParseContext parseContext) throws IOException
IOException
protected org.apache.pdfbox.pdmodel.PDDocument getPDDocument(Path path, String password, org.apache.pdfbox.io.MemoryUsageSetting memoryUsageSetting, Metadata metadata, ParseContext parseContext) throws IOException
IOException
public PDFParserConfig getPDFParserConfig()
public void setPDFParserConfig(PDFParserConfig config)
public boolean isEnableAutoSpace()
setEnableAutoSpace(boolean)
@Field public void setEnableAutoSpace(boolean v)
public boolean isExtractAnnotationText()
getPDFParserConfig()
@Field public void setExtractAnnotationText(boolean v)
public boolean isSuppressDuplicateOverlappingText()
getPDFParserConfig()
@Field public void setSuppressDuplicateOverlappingText(boolean v)
public boolean isSortByPosition()
getPDFParserConfig()
setSortByPosition(boolean)
@Field public void setSortByPosition(boolean v)
public String getOcrStrategy()
public String getOcrStrategyAuto()
public String getOcrRenderingStrategy()
public String getOcrImageType()
@Field public void setOcrDPI(int dpi)
public int getOcrDPI()
@Field public void setOcrImageQuality(float imageQuality)
public float getOcrImageQuality()
public String getOcrImageFormatName()
@Field public void setExtractBookmarksText(boolean extractBookmarksText)
public boolean isExtractBookmarksText()
@Field public void setExtractInlineImages(boolean extractInlineImages)
public boolean isExtractInlineImages()
@Field public void setExtractInlineImageMetadataOnly(boolean extractInlineImageMetadataOnly)
public boolean isExtractInlineImageMetadataOnly()
@Field public void setAverageCharTolerance(float averageCharTolerance)
public float getAverageCharTolerance()
@Field public void setSpacingTolerance(float spacingTolerance)
public float getSpacingTolerance()
@Field public void setCatchIntermediateExceptions(boolean catchIntermediateExceptions)
public boolean isCatchIntermediateExceptions()
@Field public void setExtractAcroFormContent(boolean extractAcroFormContent)
public boolean isExtractAcroFormContent()
@Field public void setIfXFAExtractOnlyXFA(boolean ifXFAExtractOnlyXFA)
public boolean isIfXFAExtractOnlyXFA()
@Field public void setAllowExtractionForAccessibility(boolean allowExtractionForAccessibility)
public boolean isAllowExtractionForAccessibility()
@Field public void setExtractUniqueInlineImagesOnly(boolean extractUniqueInlineImagesOnly)
public boolean isExtractUniqueInlineImagesOnly()
@Field public void setExtractActions(boolean extractActions)
public boolean isExtractActions()
@Field public void setExtractFontNames(boolean extractFontNames)
public boolean isExtractFontNames()
@Field public void setSetKCMS(boolean setKCMS)
public boolean isSetKCMS()
@Field public void setDetectAngles(boolean detectAngles)
public boolean isDetectAngles()
@Field public void setExtractMarkedContent(boolean extractMarkedContent)
public boolean isExtractMarkedContent()
@Field public void setDropThreshold(float dropThreshold)
public float getDropThreshold()
@Field public void setMaxMainMemoryBytes(long maxMainMemoryBytes)
public long getMaxMainMemoryBytes()
public void initialize(Map<String,Param> params) throws TikaConfigException
initialize
in interface Initializable
params
- params to use for initializationTikaConfigException
public void checkInitialization(InitializableProblemHandler handler) throws TikaConfigException
checkInitialization
in interface Initializable
handler
- if there is a problem and no
custom initializableProblemHandler has been configured
via Initializable parameters,
this is called to respond.TikaConfigException
public void setRenderer(Renderer renderer)
setRenderer
in interface RenderingParser
public Renderer getRenderer()
@Field public void setImageGraphicsEngineFactory(ImageGraphicsEngineFactory imageGraphicsEngineFactory)
public ImageGraphicsEngineFactory getImageGraphicsEngineFactory()
public String getImageStrategy()
Copyright © 2007–2023 The Apache Software Foundation. All rights reserved.