Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

Excerpt

Saves an Area as a specified image format at a specified file path.

Signature
C#
C#
 public static void SaveImage(String filePath, ImageFormat imageFormat)
Signature
vb.net
vb.net
Public Static Sub SaveImage(ByVal filePath As String, ByVal imageFormat As ImageFormat)

Parameters

Param
0filePath

A string representing the filepath you would like to save the image to.

Param
0ImageFormat

The file format ExcelWriter will save the area as. Supported file types include GIF, JPEG, BMP, PNG, EMF, TIFF, and WMF

Exceptions

Exception
System.Exception
System.Exception

If there is a problem creating, opening, or writing to the file specified, or reading from the Area object.

Example
Code Block
csharp
csharp
titleC#
           ExcelApplication xla = new ExcelApplication();
           Workbook WB= xla.Create(FileFormat.Xlsx);
           Area areaOne= WB[0].CreateArea["A1:C5"];          
           areaOne.SaveImage("Path/filename.png", System.Drawing.Imaging.ImageFormat.Png);            
Code Block
vb.net
vb.net
titlevb.net
	   Dim oExcelApp As New ExcelApplication()           
           Dim wb As Workbook = oExcelApp.Create(FileFormat.Xlsx) 
           Dim areaOne As Area = WB[0].CreateArea["A1:C5"]       
           areaOne.SaveImage("Path/filename.png"), System.Drawing.Imaging.ImageFormat.Png)