彩票走势图

Aspose.Cells电子表格组件使用技巧(五):设置工作表背景图片

原创|其它|编辑:郝浩|2012-06-26 21:05:24.000|阅读 723 次

概述:工作表加入图片作为背景会让工作表更具吸引力。你可以使用Aspose.Cells API来为表设置背景图片。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

工作表加入图片作为背景会让工作表更具吸引力。你可以使用Aspose.Cells API来为表设置背景图片。

在MS Excel 2003中要设置工作表的背景图片,你可以尝试:

1)从Format菜单中选择sheet,然后选择Background选项。

2)选择图片,将其设置为表的背景图片

下面的代码介绍了如何使用Aspose.Cells APIs执行任务:

[Java]

//Instantiate a new Workbook.
Workbook workbook = new Workbook();
//Get the first worksheet.
Worksheet sheet = workbook.getWorksheets().get(0);

//Get the image file.
File file = new File("f:\\test\\school.jpg");
//Get the picture into the streams.
byte[] imageData = new byte[(int)file.length()];
FileInputStream fis = new FileInputStream(file);
fis.read(imageData);

//Set the background image for the sheet.
sheet.setBackground(imageData);

//Save the excel file
workbook.save("f:\\test\\BackImageSheet.xls");

查看Aspose.Cells FAQ://pclwef.cn/zh-CN/EVQuestions

 


(慧都控件网版权所有,转载请注明出处,否则追究法律责任)
标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:慧都控件网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP