水印导出您也可以代码提前预置:
- 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 }
- },
- }
- });
复制代码 您都可以参考一下
|