免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4330 | 回复: 3
打印 上一主题 下一主题

使用CAM::PDF模块转换pdf为txt格式 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-07-20 23:06 |只看该作者 |倒序浏览
本帖最后由 zhlong8 于 2011-07-20 23:10 编辑

想用手机看非pdf的文档有好办法了,使用perl模块CAM::PDF 把pdf文件转化为txt格式,O(∩_∩)O哈哈~,推荐,已使用过,请看如下代码:
    #!/usr/bin/perl -w

use CAM::PDF;
use CAM::PDF::PageText;

$infile = $ARGV[0];
#print "the input PDF file is $infile\n";
$outfile = $ARGV[1] || 'test.txt;
#print "the output TXT file is $outfile\n";

open (OUTFILE, ">>$outfile") or die("cannot open file : $!");

$pdf = CAM::PDF->new($infile) || die "$CAM::PDF::errstr\n";
$num = $pdf->numPages();
foreach $p (1..$num)
{
#print "this is in page $p\n";
$str = $pdf->getPageText($p);
CAM::PDF->asciify(\$str);
print $str;
print OUTFILE "$str\n"; # write to file
}
close (OUTFILE);

论坛徽章:
0
2 [报告]
发表于 2011-07-20 23:45 |只看该作者
3Q

论坛徽章:
1
处女座
日期:2014-05-13 17:11:45
3 [报告]
发表于 2011-07-21 10:53 |只看该作者
转换后有一些打不开

论坛徽章:
0
4 [报告]
发表于 2011-07-21 23:28 |只看该作者
我再研究研究啊
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP