extract acrobat tag vs extract text tag
Friday, June 26, 2020 at 12:43pmHi
When create a package how to define extract text tag vs extract acrobat tag via JAVA SDK? One package can support both extract text tag and extract acrobat tag?
Thanks
Wendy
Reply to: extract acrobat tag vs extract text tag
Friday, June 26, 2020 at 12:54pmHi Wendy,
Use below code to identify the extraction types:
.withDocument(DocumentBuilder.newDocumentWithName("Sample Contract")
.fromFile("path_of_the_document")
.withExtractionType(ExtractionType.TEXT_TAGS) //.withExtractionType(ExtractionType.ACROFIELDS)
.enableExtraction())
And it's possible to have one document with text tags and one document with document extraction in one package.
Duo
Reply to: Hi Wendy, Use below code…
Friday, June 26, 2020 at 01:14pmis ExtractionType.ACROFIELDS the default extraction type?
Thanks
Wendy
Reply to: extract acrobat tag vs extract text tag
Friday, June 26, 2020 at 03:14pmHi Wendy,
It's true that without specifying ExtractionType will default the method to document extraction, so your assumption is kinda correct. But it won't hurt to explicitly set the extraction types to have better control over the design flow.
Duo
Reply to: extract acrobat tag vs extract text tag
Friday, June 26, 2020 at 03:17pmGot it! Thanks Duo!
Wendy
Reply to: extract acrobat tag vs extract text tag
Monday, June 29, 2020 at 09:40amHi Duo,
Only these two type of extraction, right?
Thanks
Wendy
Reply to: extract acrobat tag vs extract text tag
Monday, June 29, 2020 at 09:55amThere are another two: text anchor extraction and position extraction. But no need to specify the extraction types during creation.
Duo
Reply to: There are another two: text…
Monday, June 29, 2020 at 04:39pmif one document has both acrobatfield and text-tag, how to set?
Thanks
Wendy