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
OCR.GetText
Returns recognized text.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| OCR | 2.9 | Yes | Yes | Yes | Yes | Yes |
Parameters
none
Result
Returns the text.
Description
Returns recognized text.Calls Recognize if needed internally.
Examples
Query text:
$text = MBS( "OCR.GetText" )
Custom function to read image and return text:
/*
MBS-OCR ( language; Image)
Requires tessdata resources [MIT ©]
language: deu ('deu.traineddata), fra, eng, etc.
Image: Container Fieldname ('MyTable::MyField') in Quotes
path: FM/Extensions - put 'tessdata' Folder into FM Extensions Folder
Benjamin Fehr, EfficientBizz GmbH
http://www.efficientbizz.com
*/
Let (
[
// init OCR
$path = MBS ("Path.FileMakerPathToNativePath"; Get(FileMakerPath)& "Extensions/") ;
initialize = MBS( "OCR.Initialize"; $path; language) ; $Error = initialize ;
SegMode = MBS( "OCR.SetPageSegMode"; "Auto");
// Process Image
$img = MBS("GMImage.NewFromContainer"; Image);
set = MBS("OCR.SetImage"; $img) ;
$result = MBS("OCR.GetText") ;
// Cleanup
$clean = MBS( "OCR.Cleanup") ;
$destroy = MBS( "GMImage.Release"; $img)
]
; "" )
See also
- GMImage.New
- GMImage.NewFromContainer
- GMImage.Release
- OCR.Cleanup
- OCR.GetBoxText
- OCR.GetTextWithCoordinates
- OCR.Initialize
- OCR.SetImage
- OCR.SetPageSegMode
- Path.FileMakerPathToNativePath
Example Databases
Created 18th August 2014, last changed 21st December 2018
OCR.GetPageSegMode - OCR.GetTextWithCoordinates
Feedback: Report problem or ask question.
Links
MBS FileMaker tutorial videos