Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
9.3
9.4
9.5
10.0
10.1
10.2
10.3
10.4
10.5
10.6
Statistic
FMM
Blog
DynaPDF.ExtractDocumentText
Extracts the text of all pages.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| DynaPDF | 6.0 | Yes | Yes | Yes | Yes | Yes |
Parameters
| Parameter | Description | Example |
|---|---|---|
| The PDF reference returned from DynaPDF.New. |
Result
Returns text or error.
Description
Extracts the text of all pages.This is like extracting page by page, but plugin may do it faster than a loop in a FileMaker script and puts a newline between pages.
Use DynaPDF.ExtractPageText is you need text from just one page.
For Mac only solutions, you can also try PDFKit.GetPDFText.
Needs DynaPDF Lite license.
Please use DynaPDF.SetCMapDir to define the CMap folder to handle encodings better.
Examples
Load PDF and extract text:
Set Variable [$pdf; Value:MBS("DynaPDF.New")]
Set Variable [$r; Value:MBS("DynaPDF.OpenPDFFromContainer";$pdf; Test::data)]
Set Variable [$r; Value:MBS("DynaPDF.ImportPDFFile";$pdf)]
Set Field [Test::PageText; MBS("DynaPDF.ExtractDocumentText"; $pdf)]
Set Variable [$r; Value:MBS("DynaPDF.Release"; $pdf)]
Full script to get text with error checking:
If [MBS("DynaPDF.IsInitialized") ≠ 1]
Perform Script [“InitDynaPDF”]
End If
Set Variable [$pdf; Value:MBS("DynaPDF.New")]
If [MBS("IsError")]
Show Custom Dialog ["DynaPDF Fehler"; $pdf]
Else
Set Variable [$r; Value:MBS("DynaPDF.OpenPDFFromContainer";$pdf; Test::data)]
If [MBS("IsError")]
Show Custom Dialog ["DynaPDF Fehler"; $r]
Else
Set Variable [$r; Value:MBS("DynaPDF.ImportPDFFile";$pdf)]
If [MBS("IsError")]
Show Custom Dialog ["DynaPDF Fehler"; $r]
Else
Set Field [Test::PageText; MBS("DynaPDF.ExtractTextOld"; $pdf)]
Commit Records/Requests [No dialog]
End If
End If
#Cleanup
Set Variable [$r; Value:MBS("DynaPDF.Release"; $pdf)]
End If
See also
- DynaPDF.ExtractPageRectText
- DynaPDF.ExtractPageText
- DynaPDF.ExtractText
- DynaPDF.ImportPDFFile
- DynaPDF.IsInitialized
- DynaPDF.New
- DynaPDF.OpenPDFFromContainer
- DynaPDF.Release
- DynaPDF.SetCMapDir
- PDFKit.GetPDFText
Example Databases
Blog Entries
FileMaker Magazin
Release notes
- Version 10.1
- Fixed a problem with recursive templates in DynaPDF.ExtractDocumentText, DynaPDF.ExtractPageRectText and DynaPDF.ExtractPageText functions.
- Version 8.0
- Renamed existing DynaPDF.ExtractText to DynaPDF.ExtractDocumentText. New function does the same, but now part of DynaPDF itself and not a helper function from our plugin.
Created 8th December 2015, last changed 25th June 2020
DynaPDF.ExchangePages - DynaPDF.ExtractImages
Feedback: Report problem or ask question.
Links
MBS Xojo Chart Plugins