图片
将工作簿转换为 TIFF
一个 Excel 文件可以包含具有多个页面的多个工作表。工作簿渲染允许您将 Excel 转换为具有多个页面的 TIFF。此外,您可以控制 TIFF 的多个选项,例如压缩, 颜色深度, 解析度(水平分辨率, 垂直分辨率).
以下代码片段显示了如何将 Excel 转换为具有多个页面的 TIFF。这源Excel文件和生成 TIFF 图片附上供您参考。
Workbook wb = new Workbook("workbook-to-tiff-with-mulitiple-pages.xlsx"); | |
ImageOrPrintOptions imgOptions = new ImageOrPrintOptions(); | |
imgOptions.ImageType = ImageType.Tiff; | |
//set Resolution to 200 | |
imgOptions.HorizontalResolution = 200; | |
imgOptions.VerticalResolution = 200; | |
//set TIFF compression to Lzw. | |
imgOptions.TiffCompression = TiffCompression.CompressionLZW; | |
WorkbookRender workbookRender = new WorkbookRender(wb, imgOptions); | |
workbookRender.ToImage("workbook-to-tiff-with-mulitiple-pages.tiff"); |
将工作表转换为图像
工作表包含您要分析的数据。例如,工作表可以包含参数、总计、百分比、异常和计算。
作为开发人员,您可能需要将工作表显示为图像。例如,您可能需要在应用程序或网页中使用工作表的图像。您可能希望将图像插入到 Microsoft Word 文档、PDF 文件、PowerPoint 演示文稿或其他文档类型中。简而言之,您希望将工作表呈现为图像,以便您可以在其他地方使用它。
Aspose.Cells 支持将Excel工作表转换为图片。要使用此功能,您需要导入**Aspose.Cells.渲染**命名空间到您的程序或项目。它有几个有价值的渲染和打印类,例如**SheetRender**, **ImageOrPrintOptions**, **WorkbookRender**, 和别的。
这**SheetRender**类表示要呈现为图像的工作表。它有一个重载方法,**ToImage**,可以将工作表转换为具有不同属性或选项的图像文件。它返回一个 System.Drawing.Bitmap 对象,您可以将图像文件保存到磁盘或流中。支持多种图像格式,例如 BMP、PNG、GIF、JPG、JPEG、TIFF、EMF。
以下代码片段显示了如何将 Excel 文件中的工作表转换为图像文件。
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
//Source directory | |
string sourceDir = RunExamples.Get_SourceDirectory(); | |
//Output directory | |
string outputDir = RunExamples.Get_OutputDirectory(); | |
Workbook book = new Workbook(sourceDir + "sampleConvertWorksheetToImageByPage.xlsx"); | |
Worksheet sheet = book.Worksheets[0]; | |
Aspose.Cells.Rendering.ImageOrPrintOptions options = new Aspose.Cells.Rendering.ImageOrPrintOptions(); | |
options.HorizontalResolution = 200; | |
options.VerticalResolution = 200; | |
options.ImageType = Drawing.ImageType.Tiff; | |
// Sheet2Image By Page conversion | |
SheetRender sr = new SheetRender(sheet, options); | |
for (int j = 0; j < sr.PageCount; j++) | |
{ | |
sr.ToImage(j, outputDir + "outputConvertWorksheetToImageByPage_" + (j + 1) + ".tif"); | |
} |
将工作表转换为 SVG
SVG 代表可缩放矢量图形。 SVG是基于XML标准的二维矢量图形规范。它是一个开放标准,自 1999 年以来一直由万维网联盟 (W3C) 开发。
Aspose.Cells for .NET 从版本 7.1.0 开始可以将工作表转换为 SVG 图片。以下代码片段显示了如何将 Excel 文件中的工作表转换为 SVG 图像文件。
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
//Output directory | |
string outputDir = RunExamples.Get_OutputDirectory(); | |
// Instantiate a workbook | |
var workbook = new Workbook(); | |
// Put sample text in the first cell of first worksheet in the newly created workbook | |
workbook.Worksheets[0].Cells["A1"].Value = "DEMO TEXT ON SHEET1"; | |
// Add second worksheet in the workbook | |
workbook.Worksheets.Add(SheetType.Worksheet); | |
// Set text in first cell of the second sheet | |
workbook.Worksheets[1].Cells["A1"].Value = "DEMO TEXT ON SHEET2"; | |
// Set currently active sheet incex to 1 i.e. Sheet2 | |
workbook.Worksheets.ActiveSheetIndex = 1; | |
// Save workbook to SVG. It shall render the active sheet only to SVG | |
workbook.Save(outputDir + "ConvertWorksheetToSVG_out.svg"); |