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

How to C#: Generate Thumbnail for Excel


Support Thumbnail Generation with Various Options for Quick Excel Navigation




Overview



You can navigate through Excel document in your C#.NET application via thumbnail. And generating thumbnail for Excel document is an easy work. c# tiff compression, tesseract ocr pdf c#, asp.net c# read pdf file, add image to pdf itextsharp vb.net, c# add text to existing pdf file, c# populate pdf form fields. Please see C# programming example as below.


Related .net document control helps:
asp.net annotate pdf using c#: ASP.NET Annotate PDF Control: annotate, comment, markup PDF document online using ASP.NET C#
c# asp.net mvc document viewer: ASP.NET MVC Document Viewer: view, annotate, redact files on ASP.NET MVC web projects
asp.net mvc pdf editor control: ASP.NET MVC PDF Viewer & Editor: view, annotate, redact, edit PDF document in C# ASP.NET MVC
asp.net sharepoint document viewer control: ASP.NET SharePoint Document Viewer: view, annotate, redact documents in SharePoint
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
asp.net mvc word viewer: ASP.NET Office Word Document Viewer: view Word doc files online using C# in ASP.NET MVC web applications
asp.net edit pdf image using c#: ASP.NET PDF Image Edit Control: online insert, edit PDF images in C#




How to Create Thumbnail for Excel in C#



Add necessary references: pdf annotation in c#, vb.net pdf open password protected file, convert csv to pdf c# itextsharp, how to redact a pdf in c#, pdf editor vb.net, pdf to jpg c#, vb.net ocr read text from pdf.


  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.Excel.dll


  RasterEdge.XImage.Raster.Core.dll


  RasterEdge.XImage.Raster.dll


Using namespace:


  using RasterEdge.Imaging.Basic;


  using RasterEdge.XDoc.Excel;


This is a simple C# example for Excel thumbnail creation. As you see, you are allowed to define and control the size of Excel thumbnail. asp net remove image from pdf, asp.net pdf preview, asp.net show image from url, asp.net c# pdf viewer, mvc display pdf in view, asp.net add text to pdf field, how to edit pdf file in asp.net c#.




XLSXDocument doc = new XLSXDocument(@"C:\1.xlsx");
BasePage page = doc.GetPage(0);
Size size = new Size(200, 200);
Bitmap bmp = page.ConvertToImage(size);