Is there any way we can able to convert word file to pdf with out using any add on like word.interop.dll or itext sharp etc.
with only programing of c# or using stream file.
i am new please help.
thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Constance SwintonPosted Jun 2, 2014, 2:46 AM
First you need to read word files with a .NET classes, either a DOC documents (binary based format, see specification) or a DOCX documents with .NET (zipped XML based format, see specification) and then convert each word document's element into some corresponding element of a fixed document type (PDF, see specification).
From the specs you can see there is quite a lot going on in these formats...
SakthisPosted Nov 20, 2013, 6:47 AM
http://csharp.net-informations.com/file/dbtopdf.htm
http://csharp.net-informations.com/file/txttopdf.htm