XDoc.Word
Features
Tech Specs
How-to C#
Pricing

C# Word Library
C# Word - Convert Word to JPEG in C#.NET


C#.NET Word to JPEG Converting & Conversion Control





RasterEdge Word to JPEG converting control SDK (XDoc.Word for .NET) supports converting Word document to JPEG image file in .NET developing platforms using simple C# programming code. JPEG image file, owing to its small-size feature, is counted as a more suitable choice for publishing in web services than Word document file.

Using this C#.NET Word to JPEG conversion library component toolkit, C# developers can easily and quickly convert a large-size multi-page Word document to a group of high-quality separate JPEG image files within .NET projects, including ASP.NET web and Window Forms applications.

When using RasterEdge Word to JPEG converter library control SDK, C# developers may customize the names of all converted JPEG image files in .NET class application. In the following example, this C#.NET Word to JPEG converter library will name the converted JPEG image file Output.jpg.


Convert Word to JPEG Using C#.NET



Copy demo code below to achieve fast conversion from Word file to Jpeg image in C# programming.

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

// Get the first page of Word file.
DOCXPage page = (DOCXPage)doc.GetPage(0);

// Convert the first Word page to a JPEG file.
page.ConvertToImage(ImageType.JPEG, Program.RootPath + "\\Output.jpg");