in reply to Re^2: PDF search problem
in thread PDF search problem
#!/usr/bin/perl use warnings; use strict; use PDF::Reuse; use utf8::all; prFile('test.pdf'); #reading UTF-8 data from file open FILE, "<testFile.txt" or die "$!\n";; my $content = ""; while (<FILE>) { $content .= $_; } print "$content\n"; prText(100, 500, $content ); prEnd(); close FILE;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: PDF search problem
by stolara (Initiate) on Jul 14, 2012 at 09:50 UTC | |
by zentara (Cardinal) on Jul 14, 2012 at 10:30 UTC | |
by stolara (Initiate) on Jul 17, 2012 at 19:19 UTC | |
by gsoulis (Initiate) on Sep 23, 2013 at 14:03 UTC |