Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Word document (.doc & .docx) to pdf conversion using C# in ASP.NET [closed]

Tags:

c#

asp.net

I am looking for an easy way to convert doc and docx extension files to pdf using C# and ASP.NET. I had previously used iTextSharp for the purpose but that requires creating a document from the scratch. But I want a way to convert the Word files as it is to pdf. Like if it includes images, tables etc they must be converted to pdf as it is. Is there any free library or code? Thanks in advance.

like image 506
Asim Javed Avatar asked Nov 14 '22 12:11

Asim Javed


1 Answers

1) You can check this PDFConverter, it might helpful to you. It is a COM component, callable from .NET. 2) Or you can check this open source library PDFSharp.

3) And the third option is Aspose libraray

like image 89
Talha Avatar answered Nov 16 '22 04:11

Talha