Syncfusion Feedback


Trusted by the world’s leading companies

Syncfusion Trusted Companies

Overview

The Syncfusion WinUI Word Library (DocIO) offers powerful and comprehensive APIs to convert a Word document into an image programmatically with a few lines of code without Microsoft Word or interop dependencies. It allows you to generate an entire document as images or a single page of a Word document as an image to provide the document’s preview, thumbnail, or to print it.


Key features

Fast and reliable

Convert complex Word documents into image files faster in a batch process, compared to Office automation libraries.

Partial trust environment

Convert Word documents to image files in partial trust environments like Azure and AWS.

Platform independent

Word Library is a non-UI library for automating conversion of Word documents to images in .NET Framework, .NET Core, Blazor, Xamarin, and .NET MAUI applications.


Word-to-image options

Specific pages

Convert a specific page in a Word document into an image.

Specific range of pages

Convert a specified range of pages in a Word document into images.

Font substitution

The built-in font substitution event allows users to choose alternate fonts from the device or upload fonts with a few lines of code.


Convert the entire document to images

  1. using Syncfusion.DocIO;
  2. using Syncfusion.DocIO.DLS;
  3. using Syncfusion.DocIORenderer;
  4.  
  5. //Load file stream into Word document.
  6. using WordDocument wordDocument = new(wordDocumentStream, FormatType.Automatic);
  7. //Create a new instance of DocIORenderer class.
  8. using DocIORenderer render = new();
  9. //Convert the entire Word document to images.
  10. Stream[] imageStreams = wordDocument.RenderAsImages();
  11. //Save the memory stream as file.
  12. for (int i = 0; i < imageStreams.Length; i++)
  13. Save(imageStreams[i] as MemoryStream, "WordToImage_" + i + ".jpeg");

Convert first page of document to image

  1. using Syncfusion.DocIO;
  2. using Syncfusion.DocIO.DLS;
  3. using Syncfusion.DocIORenderer;
  4.  
  5. using WordDocument wordDocument = new(wordDocumentStream, FormatType.Automatic);
  6. using DocIORenderer render = new();
  7. //Convert the first page of the Word document into an image.
  8. Stream imageStream = wordDocument.RenderAsImages(0, ExportImageFormat.Jpeg);
  9. Save(imageStream as MemoryStream, "WordToImage.jpeg");

Convert a specific range of pages to images

  1. using Syncfusion.DocIO;
  2. using Syncfusion.DocIO.DLS;
  3. using Syncfusion.DocIORenderer;
  4.  
  5. using WordDocument wordDocument = new(wordDocumentStream, FormatType.Automatic);
  6. using DocIORenderer render = new();
  7. //Convert a specific range of pages in Word document to images.
  8. Stream[] imageStreams = wordDocument.RenderAsImages(1, 2);
  9. for (int i = 0; i < imageStreams.Length; i++)
  10. Save(imageStreams[i] as MemoryStream, "WordToImage_" + i + ".jpeg");

Awards

Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion® is proud to hold the following industry awards.

Scroll up icon
Chat with us