找回密码
 立即注册

QQ登录

只需一步,快速开始

NEO_dgz_2022

注册会员

17

主题

61

帖子

160

积分

注册会员

积分
160
NEO_dgz_2022
注册会员   /  发表于:2022-3-8 16:47  /   查看:2191  /  回复:6
1金币
GcExcel 导出excel 或者 pdf 可以添加水印吗

最佳答案

查看完整内容

需要设置PdfSaveOptions的PrintBackgroundPicture 属性为true,背景图才能一起导出 参考 https://demo.grapecity.com.cn/sp ... heetbackgroundtopdf

6 个回复

倒序浏览
最佳答案
最佳答案
Richard.Ma讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2022-3-8 16:47:46
来自 5#
需要设置PdfSaveOptions的PrintBackgroundPicture 属性为true,背景图才能一起导出
  1. worksheet.BackgroundPicture = imageBytes;

  2. PdfSaveOptions pdfSaveOptions = new PdfSaveOptions
  3. {
  4.     //Print the background image when saving pdf.
  5.     //The background image will be centered on every page of the sheet.
  6.     PrintBackgroundPicture = true
  7. };

  8. //Save the workbook into pdf file.
  9. workbook.Save(outputStream, pdfSaveOptions);
复制代码


参考
https://demo.grapecity.com.cn/sp ... heetbackgroundtopdf
回复 使用道具 举报
Lynn.Dou讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2022-3-8 17:29:01
2#
您好,
Gcexcel在导出excel/pdf时支持添加背景图片,
具体请参考以下链接学习指南相关内容:
https://www.grapecity.com/docume ... /setbackgroundimage

https://demo.grapecity.com.cn/do ... groundpicturestopdf
回复 使用道具 举报
NEO_dgz_2022
注册会员   /  发表于:2022-3-22 17:18:01
3#
image.png753799133.png
我按照文档设置背景图片没有效果,不知道什么原因
回复 使用道具 举报
NEO_dgz_2022
注册会员   /  发表于:2022-3-22 17:26:40
4#
Lynn.Dou 发表于 2022-3-8 17:29
您好,
Gcexcel在导出excel/pdf时支持添加背景图片,
具体请参考以下链接学习指南相关内容:

image.png806640624.png
回复 使用道具 举报
NEO_dgz_2022
注册会员   /  发表于:2022-3-22 17:51:20
6#
Richard.Ma 发表于 2022-3-22 17:36
需要设置PdfSaveOptions的PrintBackgroundPicture 属性为true,背景图才能一起导出

image.png387322692.png 我想请教一下 这个背景图片可以设置个数 、位置这些吗
image.png790688476.png
回复 使用道具 举报
Richard.Ma讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2022-3-22 18:10:45
7#
如果需要添加多个图片,以及设置图片位置等属性,可以参考这个示例
https://demo.grapecity.com.cn/sp ... groundpicturestopdf
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部