C#: Online Guide
How To: Word SDK
Convert Word to PDF
Convert Word to PDF
  |  
Home ›› XDoc.Word ›› C# Word: Convert Word to PDF

C# Word - Convert Word to PDF in C#.NET


Online C# Tutorial for Converting Word to PDF (.pdf) Document




Word to PDF Conversion Overview



RasterEdge Visual C# .NET Word to PDF converter library control (XDoc.Word) is a mature and effective Word document converting utility. Using this Word to PDF converting library control, .NET developers can quickly convert Word document to PDF file using Visual C# code. how to create barcode in asp.net c#, c# export excel sheet to pdf, ghostscript pdf page count c#, read pdf file using itextsharp vb.net, c# microsoft print to pdf, itextsharp remove text from pdf c#. This C#.NET Word to PDF conversion library can help developers convert multi-page Word document to multi-page PDF file.


Related .net document control helps:
asp.net edit pdf text using c#: ASP.NET PDF Text Edit Control: online edit PDF text content using C# ASP.NET
asp.net mvc pdf editor using c#: ASP.NET MVC PDF Viewer & Editor: view, annotate, redact, edit PDF document in C# ASP.NET MVC
asp.net edit pdf page using c#: ASP.NET PDF Pages Edit Control: add, remove, sort, replace PDF pages online using C#
asp.net mvc image viewer: ASP.NET Image Viewer Control(MVC & WebForms): view, annotate, redact, convert image files in html, JQuery
asp.net pdf document viewer c#: ASP.NET PDF Document Viewer in C#: open, display, view, annotate, redact Adobe PDF files online in ASP.NET MVC & WebForm...
asp.net view powerpoint: ASP.NET PowerPoint Document Viewer Control (MVC & WebForms): view ppt, pptx files online in C# using ASP.NET
asp.net view text file in browser: ASP.NET Text file viewer in MVC, WebForms: Open, view, annotate, convert txt files in C# ASP.NET


The most outstanding feature of this Word to PDF converting toolkit is its industry-leading converting accuracy. The PDF file, converted by RasterEdge Word to PDF converter toolkit, preserves the structure & layout of target Word document, keeps the elements (like images, tables and chats) of original Word file and maintains the original text style (including font, size, color, links and boldness). convert pdf to html c# free, how to save generated pdf file in c#, c# read pdf text itextsharp, convert image to pdf using vb.net, c# pdf highlight text, c# merge pdf byte arrays, vb.net rotate pdf.


Why do we need this Word to PDF converting library? In the daily-life applications, you often need to render and print Word document content for certain purpose. But without licensed third-party software, you can hardly print the word document as the original style. Under this situation, you need to convert Word document to some image format document.


RasterEdge XDoc.Word empowers your C#.NET application with advanced Word to PDF conversion functionality.




C# Demo: Convert Word to PDF Document



Add references:


  RasterEdge.Imaging.Basic.dll


  RasterEdge.Imaging.Basic.Codec.dll


  RasterEdge.XDoc.Office.Inner.Common.dll


  RasterEdge.Imaging.Drawing.dll


  RasterEdge.XDoc.Office.Inner.Office03.dll


  RasterEdge.Imaging.Font.dll


  RasterEdge.XDoc.Word.dll


  RasterEdge.XImage.Raster.Core.dll


  RasterEdge.XImage.Raster.dll


  RasterEdge.Imaging.Processing.dll


  RasterEdge.XDoc.PDF.dll


Use corresponding namespaces;


  using RasterEdge.Imaging.Basic;


  using RasterEdge.XDoc.Word;


This is a C# programming example for converting Word to PDF (.pdf) file.




// Load a Word document.
String inputFilePath = Program.RootPath + "\\" + "1.docx";
DOCXDocument doc = new DOCXDocument(inputFilePath);

// Convert and output to a PDF file.
String outputFilePath = inputFilePath + ".pdf";
doc.ConvertToDocument(DocumentType.PDF, outputFilePath);