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

C# Excel Library
C# Excel - Convert Excel to JPEG in C#.NET


C#.NET Excel to JPEG Converting & Conversion Control





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.

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.

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.

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



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");