Help for this page

Select Code to Download


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