vote up 6 vote down star
4

I have found several open-source/freeware programs that allow you to convert .doc files to .pdf files, but they're all of the application/printer driver variety, with no SDK attached.

I have found several programs that do have an SDK allowing you to convert .doc files to .pdf files, but they're all of the proprietary type, $2,000 a license or thereabouts.

Does anyone know of any clean, inexpensive (preferably free) programmatic solution to my problem, using C# or VB.NET?

Thanks!

flag

7 Answers

vote up 5 vote down check

Here is a modification of a program that worked for me. It uses Word 2007 with the Save As PDF add-in installed. It searches a directory for .doc files, opens them in Word and then saves them as a PDF. Note that you'll need to add a reference to Microsoft.Office.Interop.Word to the solution.

using Microsoft.Office.Interop.Word;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;

...

// Create a new Microsoft Word application object
Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application();

// C# doesn't have optional arguments so we'll need a dummy value
object oMissing = System.Reflection.Missing.Value;

// Get list of Word files in specified directory
DirectoryInfo dirInfo = new DirectoryInfo(@"\\server\folder");
FileInfo[] wordFiles = dirInfo.GetFiles("*.doc");

word.Visible = false;
word.ScreenUpdating = false;

foreach (FileInfo wordFile in wordFiles)
{
    // Cast as Object for word Open method
    Object filename = (Object)wordFile.FullName;

    // Use the dummy value as a placeholder for optional arguments
    Document doc = word.Documents.Open(ref filename, ref oMissing,
        ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
        ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
        ref oMissing, ref oMissing, ref oMissing, ref oMissing);
    doc.Activate();

    object outputFileName = wordFile.FullName.Replace(".doc", ".pdf");
    object fileFormat = WdSaveFormat.wdFormatPDF;

    // Save document into PDF Format
    doc.SaveAs(ref outputFileName,
        ref fileFormat, ref oMissing, ref oMissing,
        ref oMissing, ref oMissing, ref oMissing, ref oMissing,
        ref oMissing, ref oMissing, ref oMissing, ref oMissing,
        ref oMissing, ref oMissing, ref oMissing, ref oMissing);

    // Close the Word document, but leave the Word application open.
    // doc has to be cast to type _Document so that it will find the
    // correct Close method.                
    object saveChanges = WdSaveOptions.wdDoNotSaveChanges;
    ((_Document)doc).Close(ref saveChanges, ref oMissing, ref oMissing);
    doc = null;
}

// word has to be cast to type _Application so that it will find
// the correct Quit method.
((_Application)word).Quit(ref oMissing, ref oMissing, ref oMissing);
word = null;
link|flag
Thank you! I may just go with Aspose anyway, if it's faster than Word automation. But if I can tolerate a little bit of slowness, I'll prolly use your solution. Thanks again! – Shaul Mar 4 at 7:54
Yes, it's not the fastest but it's hard to beat the price. :-) Glad I could help. – Eric Ness Mar 4 at 14:28
Thanks Eric - useful – Sam Meldrum May 14 at 13:30
+1, this is a useful technique if you want free PDF conversion. – RichardOD Sep 8 at 7:58
With Office 2007 SP2 you no longer need the save as PDF download. I've also used this technique successfully for Excel and Powerpoint. – RichardOD Sep 30 at 9:07
vote up 0 vote down

When I stumbled upon some problems with server side office automation we looked into the technique described here on codeproject. It uses the portable version (which can be deployed via xcopy) of OpenOffice in combination with a macro. Although we haven't done the switch ourselves yet, it looks very promissing.

link|flag
vote up 0 vote down

I have used iTextSharp to generate PDFs before. It's an open source port of iText from the Java world and is pretty powerful.

I haven't explicitly done a Word to PDF conversion, but I have programmatically created and manipulated PDFs with it.

Here is another link to to the project.

link|flag
I am actually already using iTextSharp in my project, but it doesn't convert Word. – Shaul Mar 4 at 7:12
vote up 1 vote down

I do this as part of a release process - convert a Word Doc to PDF.

http://www.suodenjoki.dk/us/productions/articles/word2pdf.htm and http://www.oooforum.org/forum/viewtopic.phtml?t=3772&highlight=pdf+form

not exactly programmatically, but may help you.

link|flag
vote up 2 vote down

PDFCreator has a COM component, callable from .NET or VBScript (samples included in the download).

But, it seems to me that a printer is just what you need - just mix that with Word's automation, and you should be good to go.

link|flag
where's this COM component? And what does "mik" mean? Was that meant to be "mix"? – Shaul Mar 3 at 19:49
The COM component is included in the download, along with samples. And yes, that was supposed to be "mix". – Mark Brackett Mar 4 at 11:01
vote up 0 vote down

Seems to be some relevent info here:

http://stackoverflow.com/questions/159744/converting-ms-word-documents-to-pdf-in-asp-net

Also, with Office 2007 having publish to PDF functionality, I guess you could use office automation to open the *.DOC file in Word 2007 and Save as PDF. I'm not too keen on office automation as it's slow and prone to hanging, but just throwing that out there...

link|flag
Aspose may work, but it's grossly expensive. – Shaul Mar 3 at 19:43
vote up 1 vote down

There's an entire discussion of libraries for converting Word to PDF on Joel's discussion forums. Some suggestions from the thread:

link|flag
Thanks, but all the suggestions there fall under the two categories I described above: either not programmatic, or hugely expensive. I specifically need .doc to .pdf programmatically. – Shaul Mar 3 at 19:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.