设置工作表背景图片
Contents
[
Hide
]
背景图像位于电子表格中文本和线条的后面。它们用于提供有关工作簿的信息,例如用作状态水印,但也可以添加公司品牌或装饰。 Microsoft Excel 允许用户手动添加背景图像。
开发人员还可以使用 Aspose.Cells for .NET 或 VSTO 通过他们的应用程序添加背景图像。本文比较了这两种方法。
在工作表上设置背景图片
要将背景图像应用到电子表格:
- 创建工作簿并访问要应用背景图像的工作表。
- 应用背景图像。
- 保存工作簿。
下面的代码示例展示了如何首先使用VSTO,使用 C# 或 Visual Basic,然后使用Aspose.Cells for .NET, 再次使用 C# 或 Visual Basic。
本文中的代码示例创建了一个具有重复背景图像的工作表,如下面的屏幕截图所示。
已为工作表设置背景。
使用 VSTO 设置背景图片
C#
.......
using Microsoft.VisualStudio.Tools.Applications.Runtime;
using Excel = Microsoft.Office.Interop.Excel;
using Office = Microsoft.Office.Core;
using System.Reflection;
.......
//Instantiate the Application object.
Excel.ApplicationClass ExcelApp = new Excel.ApplicationClass();
//Add a Workbook.
Excel.Workbook objBook = ExcelApp.Workbooks.Add(System.Reflection.Missing.Value);
//Get the First sheet.
Excel.Worksheet objSheet = (Excel.Worksheet)objBook.Sheets["Sheet1"];
//Set a background picture for the sheet.
objSheet.SetBackgroundPicture("e:\\test\\school.jpg");
//Save the excel file.
objBook.SaveCopyAs("c:\\BackgroundPicBook.xls");
//Quit the Application.
ExcelApp.Quit();
设置背景图片Aspose.Cells for .NET
C#
.......
using Aspose.Cells;
.......
//Instantiate a new Workbook.
Workbook workbook = new Workbook();
//Get the first worksheet.
Worksheet sheet = workbook.Worksheets[0];
//Define a string variable to store the image path.
string ImageUrl = @"e:\test\school.jpg";
//Get the picture into the streams.
FileStream fs = File.OpenRead(ImageUrl);
//Define a byte array.
byte[]imageData = new Byte[fs.Length];
//Obtain the picture into the array of bytes from streams.
fs.Read(imageData, 0, imageData.Length);
//Close the stream.
fs.Close();
//Set the background image for the sheet.
sheet.SetBackground(imageData);
//Save the excel file.
workbook.Save(@"c:\BackgroundPicBook.xls");