C# Excel - Convert Excel to JPEG in C#.NET
C#.NET Excel to JPEG Converting & Conversion Control
Excel to JPEG Conversion Overview
RasterEdge Excel to JPEG converting control SDK (XDoc.Excel for .NET) supports converting Excel document to JPEG image file in .NET developing platforms using simple C# programming code.
barcode reader c#,
c# pdfbox extract text,
how to merge multiple pdf files into one in c#,
asp.net pdf library open source,
barcode scanner project in vb net,
c# pdfsharp fill pdf form.
JPEG image file, owing to its small-size feature, is counted as a more suitable choice for publishing in web services than Excel document file.
Related .net document control helps:
asp.net pdf page:
ASP.NET PDF Pages Edit Control: add, remove, sort, replace PDF pages online using C#
asp.net edit pdf text:
ASP.NET PDF Text Edit Control: online edit PDF text content using C# ASP.NET
asp.net annotate pdf:
ASP.NET Annotate PDF Control: annotate, comment, markup PDF document online using ASP.NET C#
asp.net mvc document viewer: ASP.NET MVC Document Viewer: view, annotate, redact files on ASP.NET MVC web projects
asp.net edit pdf image:
ASP.NET PDF Image Edit Control: online insert, edit PDF images in C#
asp.net document viewer:
EdgeDoc:ASP.NET Document Viewer C# Control:
Open, view, annotate, redact, convert documents online in C#, VB.NET, AS...
asp.net pdf viewer: ASP.NET PDF Viewer Control: view, navigate, zoom Adobe PDF document in C# ASP.NET
Using this C#.NET Excel to JPEG conversion library component toolkit, C# developers can easily and quickly convert a large-size multi-page Excel document to a group of high-quality separate JPEG image files within .NET projects, including ASP.NET web and Window Forms applications.
c# pdf report generator,
how to open password protected pdf file in c#,
c# split pdf into images,
convert pdf to word c# open source,
c# pdf metadata,
c# extract image from pdf,
vb.net extract image from pdf.
When using RasterEdge Excel to JPEG converter library control SDK, C# developers may customize the names of all converted JPEG image files in .NET class application.
pdf editor asp.net,
asp.net open word document,
asp.net show excel file in browser,
asp.net view tiff image,
how to show pdf file in asp.net page c#,
free pdf preview in asp net c#,
pdf viewer in mvc 4.
In the following example, this C#.NET Excel to JPEG converter library will name the converted JPEG image file Output.jpg.
Convert Excel to JPEG Using C#.NET
Add necessary references:
RasterEdge.Imaging.Basic.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
RasterEdge.Imaging.Basic.Codec.dll
Using namespaces:
using RasterEdge.Imaging.Basic;
using RasterEdge.XDoc.Excel;
Copy demo code below to achieve fast conversion from Excel file to Jpeg image in C# programming.
// Load a Excel file.
String inputFilePath = Program.RootPath + "\\" + "1.xlsx";
XLSXDocument doc = new XLSXDocument(inputFilePath);
// Get the first page of Excel file.
XLSXPage page = (XLSXPage)doc.GetPage(0);
// Convert the first Excel page to a JPEG file.
page.ConvertToImage(ImageType.JPEG, Program.RootPath + "\\Output.jpg");
|