views:

90

answers:

6

Hi,

I am looking for .NET component to convert different files into PDF format. Right now I need to be able to convert programmatically doc, xls and TIFF files to PDF. But I may need to deal with more file types in near future.

I looked at Aspose.Words, it works good but for doc only. Is there any component on the market that would allow me to convert in my code all three file types?

I would appreciate your suggestions.

Thanks, Anvar

+1  A: 

Aspose has more components to handle the other file types.

I know of no other component vendor which supports as many different formats as the Aspose components, assuming that you don't want to use some Interop-with-PDFWriter kind of solution.

Lucero
Thanks Lucero. I do like Aspose as well. Just need to explore all other options too.
Anvar
+1  A: 

Syncfusion's Essential PDF will handle these formats directly, as well as providing a programmatic API which you can use to add other formats.

Reed Copsey
Thanks Reed, I am looking into it.
Anvar
Reed, just wanted to ask - did you try the product yourself? If yes, do you find it alright?
Anvar
+1  A: 

From doc to pdf you can use this:

http://www.codeproject.com/KB/cs/sertf2pdf.aspx

MUG4N
Thanks. I wish I can speak German to read the guy's comments:)
Anvar
Well if you need some help just say a word
MUG4N
A: 

BCL EasyPDF is good for the job, I guess.

Will Marcouiller
+1  A: 

This topic have been discussed quite a lot on SO. Just do a quick search for "asp net pdf generation". For example, here are two of the questions, and there are more:

.Net server based PDF generation
Generation PDF from HTML (.Net component)

Franci Penov
The links you refer to deal with PDF Generation, not conversion (other than HTML to PDF). Anvar is seeking to convert DOC and XLS files as well)
Muhimbi
There are quite more questions on SO about generating PDFs from various formats, including .XLS and .CVS among others.
Franci Penov
+1  A: 

I might as well put a shameless plug in for a product that I have worked on. The Muhimbi PDF Converter services is a server based product that allows typical office documents, as well as an increasing number of other file types, to be converted to PDF using a web services based interface (java / .net examples are included).

A .net example can be found here.

Muhimbi
Hi Muhibmi,I looked it up, it looks good. I wonder what kind of implications might be there due to the fact that functionality is provided via Web Services.
Anvar
Impact is nothing but positive from my perspective. As it is a web service it can be load balanced for resiliency / scalability. It can also be accessed from non .net environments.
Muhimbi
also it runs as a self contained windows service. No need for IIS.
Muhimbi