NAME PDF::OCR - DEPRECATED get ocr and images out of a pdf file SYNOPSIS use PDF::OCR; my $p = new PDF::OCR('/path/to/file.pdf'); my $text = $p->get_ocr; EXAMPLE 2 use PDF::OCR; my $p = new PDF::OCR('/path/to/file.pdf'); my $images = $p->abs_images; # extract images, get list of paths for( @{$p->abs_images} ){ # get ocr content for each my $content = $p->get_ocr($_); print "image $_ had content: $