Is there any free software available on Ubuntu that can convert a pdf file to a .doc file?
15 Answers
Download Abiword from Ubuntu Software Center or you can install it by typing following command in terminal:
sudo apt-get install abiwordThen perform the conversion:
abiword --to=doc example.pdf 1 openoffice (or alternatively the libreoffice fork) both have pdf import plugins and .doc export functionality... though both aspects suffer from conversion issues AFAIK.
By this I mean that the conversion fidelity isn't always 100%.
Abiword also works in a similar way, if OpenOffice doesn't work on your system.
2I've had great success with PDF to Word online. This is not a desktop application, but a service, that works better than other things I've used.
5Install AbiWord from Ubuntu Software Center
Open Pdf Files with it.
Use Save As.. to save pdf in Word Doc format.
Its this easy :)
1I prefer converting PDF files first to HTML using pdftohtml included in the poppler-utils package, for example by means of a Nautilus Script merely consisting of this command:
pdftohtml -noframes -q -p -c "$1" "${1%\.pdf}-img.html"Then I open the resulting HTML file in LibreOffice Writer, and (after a little editing) Save As any other document format I like.
Note: Adding -i parameter to the command above produces HTML file without images.
1