- or download this
$miDoc->Create('OCR-test-result.mdi');
my $OCRresult = $miDoc->{Images}->Item(0)->{Layout}{Text};
print $OCRresult;
- or download this
$miDoc->Create('OCR-test.tif');
$miDoc->OCR(LangId =>'miLANG_ENGLISH');
my $OCRresult = $miDoc->{Images}->Item(0)->{Layout}{Text};
print $OCRresult;
- or download this
$miDoc->OCR(LangId =>'miLANG_ENGLISH');
- or download this
eval {$miDoc->OCR(LangId =>'miLANG_ENGLISH')};
warn $@ if $@;