C#: Online Guide
How To: Word SDK
Thumbnail Create
  |  
Home ›› XDoc.Word ›› C# Word: Thumbnail Create

How to C#: Generate Thumbnail for Word


Support Thumbnail Generation with Various Options for Quick Word Navigation




Overview



You can navigate through Word document in your C#.NET application via thumbnail. itextsharp add image to pdf vb.net, print pdf vb.net without acrobat, add header and footer in pdf using itextsharp c#, vb.net pdf to image, c# itextsharp html image to pdf, code 128 barcode reader c#. And generating thumbnail for Word document is an easy work. Please see C# programming example as below.


Related .net document control helps:
asp.net pdf document viewer: ASP.NET PDF Document Viewer in C#: open, display, view, annotate, redact Adobe PDF files online in ASP.NET MVC & WebForm...
asp.net mvc pdf editor: ASP.NET MVC PDF Viewer & Editor: view, annotate, redact, edit PDF document in C# ASP.NET MVC
asp.net document viewer c#: ASP.NET Document Viewer using C#: Open, View, Annotate, Redact, Convert document files in ASP.NET using C#, HTML5, JQuer...
asp.net excel viewer: ASP.NET Excel Viewer in C# Control (MVC & WebForms): view Office Excel document in web browser.
asp.net pdf editor: EdgePDF: ASP.NET PDF Editor Web Control: Online view, annotate, redact, edit, process, convert PDF documents
asp.net image viewer: ASP.NET Image Viewer Control(MVC & WebForms): view, annotate, redact, convert image files in html, JQuery
asp.net mvc document viewer: ASP.NET MVC Document Viewer: view, annotate, redact files on ASP.NET MVC web projects



How to Create Thumbnail for Word in C#



preview pdf in asp.net, asp.net open excel file in browser, open word document in asp.net mvc, asp net mvc generate pdf from view itextsharp, asp.net mvc pdf editor, asp.net view tiff image, asp.net pdf viewer user control c#.



Add necessary references to your C#.NET project:


  RasterEdge.Imaging.Basic.dll


  RasterEdge.Imaging.Basic.Codec.dll


  RasterEdge.XDoc.Office.Inner.Common.dll


  RasterEdge.Imaging.Drawing.dll


  RasterEdge.Imaging.Processing.dll


  RasterEdge.XDoc.Office.Inner.Office03.dll


  RasterEdge.Imaging.Font.dll


  RasterEdge.XDoc.Word.dll


  RasterEdge.XImage.Raster.Core.dll


  RasterEdge.XImage.Raster.dll


Use corresponding namespaces;


  using RasterEdge.Imaging.Basic;


  using RasterEdge.XDoc.Word;


This is a simple C# example for Word thumbnail creation. As you see, you are allowed to define and control the size of thumbnail. c# add watermark to existing pdf file using itextsharp, vb.net merge pdf files free, c# read pdf page, c# scale pdf page, vb.net pdf page count, how to search text in pdf using c#, vb.net code to convert pdf to text.




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