佚名 通过本文向大家介绍了chm文件在线转换pdf,chm文件转换pdf,chm文件转换为pdf,chm文件怎么转换成pdf,chm文件转pdf等相关知识,希望对您有所帮助,也希望大家多多支持linkedu.com
在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 <path to the chm file> <directory for the resulting HTML files>
3.转换成pdf
htmldoc -t pdf13 --webpage -f myFile.pdf *.html
</div>