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

C# Word Library
How to C#: Generate Thumbnail for Word


Support Thumbnail Generation with Various Options for Quick Word Navigation





You can navigate through Word document in your C#.NET application via thumbnail. And generating thumbnail for Word document is an easy work. Please see C# programming example as below.


How to Create Thumbnail for Word in C#



This is a simple C# example for Word thumbnail creation. As you see, you are allowed to define and control the size of thumbnail.

DOCXDocument pdf = new DOCXDocument(@"C:\1.docx");
BasePage page = pdf.GetPage(0);
Size size = new Size(200, 200);
Bitmap bmp = page.ConvertToImage(size);