Anybody aware of a piece of software which could do MS Office .doc to .pdf conversion for me?
I already tried OpenOffice but it appeared to be rather slow and resource-hungry for large documents.
|
Anybody aware of a piece of software which could do MS Office .doc to .pdf conversion for me? I already tried OpenOffice but it appeared to be rather slow and resource-hungry for large documents. |
||||
|
|
|
If you have MS Office 2007, you can use the Save as PDF plugin. |
|||||
|
|
PDFCreator is a free print-to-pdf tool based on ghostscript. It's fairly good, although the output of Acrobat Distiller tends to be a bit nicer. |
||||
|
|
|
If you want to do it programmatically and you're a .NET or Java programmer, you could use Aspose.Words in combination with Aspose.PDF. It worked well for me. EDIT: It seems that using a recent version, you only have to license Aspose Words. |
|||||
|
|
I regularly use - and recommend - PrimoPDF, which is available in both free and paid-for incarnations. |
||||
|
|
|
And no one mentioned openoffice with built in PDF saving support? |
||||
|
|
|
If you want to do it programatically take a look at my response here: Convert DOC to PDF -- http://stackoverflow.com/questions/218556/send-document-to-printer-with-c#221818 This is code I currently use and it works very well. It will handle anything that Word will open such as .doc, .docx, .rtf etc. Also, if you have many files to convert you can write you code such that Word is opened once in the background and files are subsequently opened, converted and closed, works very fast and I've had no issues with crashing etc. even when converting thousands of files at a go. |
||||
|
|
|
Try Altsoft Xml2PDF |
||||
|
|
|
Hey, look what I found. http://www.phplivedocx.org/2009/02/06/convert-doc-to-pdf-in-php/ PHPLiveDocx is a document creation program in php. It can be used to convert Doc to PDF. I've not tried it yet myself, but I certainly shall be experimenting with it soonish. |
||||
|
|
|
In the past I've tried different approaches. But now I'm fine with Microsoft Office Word 2007 and the SaveAsPDF-Addin. I've recorded the "save as pdf" process as macro and refined it a bit. Here is my current version:
With the macro option of word I can use this macro in the command line for automation purposes. e. g.
If you want to use it for several documents in a batch file, you can try this:
|
||||
|
|
|
You could use online service like one at http://www.freepdfconvert.com No need to install any software. |
||||
|
|
|
Same as Stu Mackellar, I use primo pdf and am very happy with it. Some don't like that the free version converts hypertext links to text, but I am OK with that. -- mike |
||||
|
|
|
If you're just doing it occasionally, you can use Zamzar.com to do all sorts of conversions. TRiG. |
||||
|
|
|
I have researched this market extensively and Aspose.Words is worth considering. It does a good job and is 100% .net, but if you are after perfect fidelity (Aspose doesn't render footnotes, limited text flow and floating objects) then the only option you have is to automate Office directly, which is a pain on the server, or use a product that has done all the hard work for you such as the Muhimbi PDF Conversion Service that runs on a server and can be called using a web service. Full disclosure, I work for Muhimbi (which is why I have researched the market so extensively). |
||||
|
|
|
Aspose.Words has been mentioned above. I just want to add the most recent info. Aspose.Words now converts to PDF by itself (you previously needed Aspose.Words + Aspose.Pdf). One component to use is better than two. One of the benefits you get with Aspose.Words is that you can get the same great looking documents not only in PDF, but in XPS, render pages as images and even print documents. I'm on the Aspose.Words team. |
||||
|
|
|
I havent looked at the built in PDF features in the last couple of years, but you can use office automation to print to a PostScript Printer driver, which can be be setup as a printer. This creates a PostScript(PS) File which can be converted to PDF using GhostScript. |
||||
|
|
|
See this question for the C# code to a free Word to PDF converter. |
||||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.