在不同的Linux分发版本中使用poppler-utils包安装pdftotext(CentOS):
# yum install poppler-utils
或者在Debian / Ubuntu中使用如下指令:
$ sudo apt-get install poppler-utilspdftotext 使用语法
pdftotext {PDF-file} {text-file}如何将pdf转化为text?
将php-manual.pdf 转化为 php-manual.txt:
$ pdftotext php-manual.pdf php-manual.txt
只转化前 5 页和后 10 页:
$ pdftotext -f 5 -l 10 php-manual.pdf php-manual.txt
转化加密过的pdf文件(owner password ):
$ pdftotext -opw ’password’ php-manual.pdf php-manual.txt
转化加密过的pdf文件(user password ):
$ pdftotext -upw ’password’ php-manual.pdf php-manual.txt
Sets the end-of-line convention to use for text output. You can set it to unix, dos or mac. For UNIX / Linux oses, enter:
$ pdftotext -eol unix php-manual.pdf php-manual.txt更多命令:man page pdftotext
此外,还可以转化pdf为多种其他格式文件:
如可以将pdf文件转化为html,但我测试了一下,效果貌似不佳,很多页面有错乱出现,但是pdftotext转化的效果还是不错的(图片都去掉了),而且速度很快。
相关文章:
1. Win11加密功能怎么添加到右键菜单? Win11加密解密右键快捷添加方法2. Win11 release preview通道是什么?release preview频道更新Win11好吗?3. Win11发布预览版Build 22000.1639更新补丁KB5022905推送(附更新修复内容汇总)4. Win11 Beta 22621.1325、22623.1325更新补丁KB5022914推送(附更新修复内容汇总)5. Win11 Moment 3 新图片曝光 引入RGB 灯效控制等等6. Win11开机后出现explorer.exe应用程序错误怎么解决? exe应用程序错误解决办法7. Win11 Build 25300怎么开启Emoji 15?8. Win11 预览版25300怎么开启文件资源管理器图库隐藏功能?9. KB5022845导致Win1122H2更新驱动失败 Surface出现0x80070103错误10. Win11 Build 22623.1325 引入“关闭通道”选项,可从 Beta 频道回到正式版
