您现在的位置是:网站首页> 编程资料编程资料

在Ubuntu下如何将chm文件转成pdf格式的方法介绍_Ubuntu/Debian_操作系统_

2024-03-22 163人已围观

简介 在Ubuntu下如何将chm文件转成pdf格式的方法介绍_Ubuntu/Debian_操作系统_

在Ubuntu下将chm文件转成pdf格式总共分为三个步骤:

1.将chm提取出html文件:

2.将html按页排序

3.转换成pdf

在Ubuntu下进行如下操作:

1.安装libchm-bin,  htmldoc

sudo apt-get install libchm-bin htmldoc

2.提取出html文件

extract_chmLib

3.转换成pdf

htmldoc -t pdf13 --webpage -f myFile.pdf *.html

-六神源码网