livi 发表于 2024-9-3 10:04:51

报表水印功能

想请教一下,ar报表有水印功能吗?打开和下载报表的时候 可以定制化水印吗?

Felix.Li 发表于 2024-9-3 10:04:52

问题描述:

水印设置功能。

问题回答:
您好,这个AR17支持包括PDF水印:
https://gcdn.grapecity.com.cn/showtopic-170932-1-3.html。
如果报表加背景水印的话,您可以用图片,然后重复显示图片:

参考:https://demo.grapecity.com.cn/activereports/aspnet/WebOnlineServices/edit/%E6%8A%A5%E8%A1%A8%E6%B0%B4%E5%8D%B0.rdlx

livi 发表于 2024-9-3 10:30:45

Felix.Li 发表于 2024-9-3 10:17
问题描述:

水印设置功能。


只能提前预设好图片是吗?

livi 发表于 2024-9-3 10:41:50

Felix.Li 发表于 2024-9-3 10:17
问题描述:

水印设置功能。


另外 PDF水印是只有在下载导出那里可以吗?我看了那个贴

Bella.Yuan 发表于 2024-9-3 11:10:40

您好,目前水印功能是需要使用提前预设好图片,设计好的报表文件添加水印后,可以导出pdf。
17版本新增的功能是导出pdf时可以在导出界面设置水印,以及控制该水印是否需要打印。

livi 发表于 2024-9-3 11:26:19

Bella.Yuan 发表于 2024-9-3 11:10
您好,目前水印功能是需要使用提前预设好图片,设计好的报表文件添加水印后,可以导出pdf。
17版本新增的 ...

好的,谢谢。那我们看下是否满足要求。

Felix.Li 发表于 2024-9-3 11:29:13

水印导出您也可以代码提前预置:
createViewer({
                locale: 'en',
                element: '#' + options.element,
                reportService: {
                  url: 'api/reporting',
                },
                reportID: options.documentInfo.id,
                settings: {
                  zoomType: 'FitPage',
                },
                theme: options.theme,
                defaultExportSettings: {
                  pdf: {
                        /*only for rpx*/
                        ConvertMetaToPng: { value: true },
                        ExportBookmarks: { value: false },
                        ImageInterpolation: { value: 'Auto' },
                        ImageQuality: { value: 'Highest' },
                        /*both (rdlx and rpx)*/
                        Title: { value: 'Document' },
                        Author: { value: 'USER' },
                        Subject: { value: 'PDF' },
                        Keywords: { value: 'PDF export' },
                        Application: { value: 'AR' },
                        EmbedFonts: { value: 'All' },
                        Version: { value: 'Pdf15' },
                        UserPassword: { value: 'user_pwd' },
                        OwnerPassword: { value: 'owner_pwd' },
                        Encrypt: { value: true },
                        FileName: { value: 'ar_pdf', visible: true },
                        WatermarkAngle: { value: 0, visible: true },
                        WatermarkColor: { value: "Gray", visible: true },
                        WatermarkFontName: { value: "Arial", visible: true },
                        WatermarkFontSize: { value: 20, visible: true },
                        WatermarkFontStyle: { value: "Regular", visible: true },
                        WatermarkPrintOnly: { value: false, visible: true },
                        WatermarkTitle: { value: "ar_pdf" visible: true }
                  },
                }
            });您都可以参考一下
页: [1]
查看完整版本: 报表水印功能