in reply to Converting Text from PDF using CAM::PDF
#!/usr/bin/perl use strict; use warnings; open (FILE, "pdftotext -f 1 /root/Desktop/urfile.pdf - |"); my $file = <FILE>; print "$file\n"; close FILE;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Converting Text from PDF using CAM::PDF
by mr_p (Scribe) on Jun 23, 2010 at 14:50 UTC |