Is it possible to convert chm
files to pdf
or word in GUI fashion?
3 Answers
I don't know of a way to do it completely on the graphical user interface, but this isn't too bad:
- First, you'll need to install libchm-bin
(click to install).
Then, open a Terminal and type
extract_chmLib your_file.chm .
(Mind the full stop at the end, it represents the current directory) This will output a HTML file from the chm file.
You can now open up the HTML file with Firefox and select Print, which will allow you to print it to a file, outputting a PDF. Go to "Options" to get rid the margin notes that firefox will put into the output.

- 70,465

- 86,783
Calibre which can be installed from the software center has a .chm conversion input plugin, it also has a .pdf conversion output plugin so in theory it is supposed to be able to do what you want, may not be perfect though.
Another GUI option, though painstaking, is to install the nice .chm viewer called chmsee, this can be installed from software center as well, you then open the file with chmsee and you can copy and paste to OpenOffice.org Writer then save to .doc or export to .pdf
For me I just use the command line tool chm2pdf which gives fairly good results, this method uses htmldoc as a helper application.

- 40,058