提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
原创|使用教程|编辑:何家巧|2022-12-22 11:11:46.470|阅读 235 次
概述:今天我们将向大家介绍 报表工具FastReport VCL 的导出选项功能—— PDF/A。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
Fastreport是目前世界上主流的图表控件,具有超高性价比,以更具成本优势的价格,便能提供功能齐全的报表解决方案,连续三年蝉联全球文档创建组件和库的“ Top 50 Publishers”奖。
慧都科技是Fast Reports在中国区十余年的友好合作伙伴,连续多年被Fast Reports授予中国区Best Partner称号。
今天我们将向您介绍 FastReport VCL 的导出选项,我们的开发团队在每次更新时都会添加许多新功能。我们早在 2017 年就添加的导出格式,今天我们来一起讨论 PDF/A 及其功能。
由于包含所有数据,PDF/A 文档将比 PDF 稍大。
创建模板后,让我们切换到完成报表的预览模式。在左上角找到导出为 PDF。
A 级一致性旨在通过允许辅助软件(例如屏幕阅读器)更精确地提取和解释文件内容,来提高身体受损用户对一致性文件的可访问性
PDF/A-2 标准 (ISO 19005-2)
PDF/A-2 解决了 PDF 版本 1.5、1.6 和 1.7 添加的一些新功能。PDF/A-2 与 PDF/A-1 具有向后兼容性,这意味着所有 PDF/A-1 文档都必须与 PDF/A-2 兼容。但是,PDF/A-2 不一定符合 PDF/A-1。
PDF/A-3 标准 (ISO 19005-3)
PDF/A-3 在一个重要方面不同于 PDF/A-2:它允许嵌入。此外,它不仅可以是其他 PDF/A(PDF/A-2 支持),还可以是任何其他文件。这对于存档至关重要。
这是添加到 PDF 文件的内部信息的部分:标题、作者、主题、关键字(您可以将 PDF 上传到网络,它们有很好的索引)、PDF 创建者和文档制作者。
这是添加到 PDF 文件的内部信息的部分:标题、作者、主题、关键字(您可以将 PDF 上传到网络,它们有很好的索引)、PDF 创建者和文档制作者。
如何从 Delphi 或 Lazarus 代码生成 PDF/A
procedure TForm1.Button1Click(Sender: TObject); begin {Generate a report. We must generate a report before exporting} frxReport1.PrepareReport(); {Set the range of exported pages. All pages of the generated report are exported by default} frxPDFExport1.PageNumbers := '2-3'; {Set the PDF standard TPDFStandard = (psNone, psPDFA_1a, psPDFA_1b, psPDFA_2a, psPDFA_2b, psPDFA_3a, psPDFA_3b); Adding frxExportPDFHelpers module to the uses list is required: uses frxExportPDFHelpers;} frxPDFExport1.PDFStandard := psNone; {For PDFStandard = psNone you can set the version of the PDF standard TPDFVersion = (pv14, pv15, pv16, pv17); Adding frxExportPDFHelpers module to the uses list is required: uses frxExportPDFHelpers;} frxPDFExport1.PDFVersion := pv17; {You can set compression for a smaller file size} frxPDFExport1.Compressed := True; {Set whether fonts should be embedded in the resulting document. Font embedding significantly increases the size of the resulting document} frxPDFExport1.EmbeddedFonts := False; {Set whether to export the background image of the page} frxPDFExport1.Background := True; {Disable the export of print optimized objects.} {When the option is enabled, the image quality will be better, but they will be 9 times larger} frxPDFExport1.PrintOptimized := False; {Set whether the resulting PDF will include an external table of contents, as in the original report} frxPDFExport1.Outline := False; {Set whether to export images with transparency} frxPDFExport1.Transparency := True; {You can set the desired DPI for images. Enabling this option disables the SaveOriginalImages function,} {which allows saving images in their original form.} frxPDFExport1.PictureDPI := 150; {Set compression ratio of raster images} frxPDFExport1.Quality := 95; {Set whether to open the resulting file after export} frxPDFExport1.OpenAfterExport := False; {Set whether to display export progress (show which page is currently being exported)} frxPDFExport1.ShowProgress := False; {Set whether to display a dialog box with export filter settings} frxPDFExport1.ShowDialog := False; {Set the name of the resulting file. Note that if you do not set a file name and disable the export filter dialog window,} {the dialog will still be displayed for file name selection.} frxPDFExport1.FileName := 'C:\Output\test.pdf'; {Fill in the corresponding fields of the Information tab} frxPDFExport1.Title := 'Your Title'; frxPDFExport1.Author := 'Your Name'; frxPDFExport1.Subject := 'Your Subject'; frxPDFExport1.Keywords := 'Your Keywords'; frxPDFExport1.Creator := 'Creator Name'; frxPDFExport1.Producer := 'Producer Name'; {Fill in the corresponding fields of the Security tab} frxPDFExport1.UserPassword := 'User Password'; frxPDFExport1.OwnerPassword := 'Owner Password'; frxPDFExport1.ProtectionFlags := [ePrint, eModify, eCopy, eAnnot]; {Set up viewer settings (Viewer tab)} frxPDFExport1.HideToolbar := False; frxPDFExport1.HideMenubar := False; frxPDFExport1.HideWindowUI := False; frxPDFExport1.FitWindow := False; frxPDFExport1.CenterWindow := False; frxPDFExport1.PrintScaling := False; {Export the report} frxReport1.Export(frxPDFExport1); end;
本次FastReport使用教程中关于如何使用FastReport VCL 设计器中的 PDF/A的相关内容就到这里了,更多教程进入慧都官网查看。
更多产品授权信息点击查看FastReport VCL价格,或者咨询慧都在线客服。
FastReport技术QQ群:536197826 欢迎进群一起讨论
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
Unity 是一款功能极其丰富的游戏引擎,允许开发人员将各种媒体集成到他们的项目中。但是,它缺少最令人兴奋的功能之一 - 将 Web 内容(例如 HTML、CSS 和 JavaScript)直接渲染到 3D 场景中的纹理上的能力。在本文中,我们将介绍如何使用 DotNetBrowser 在 Unity3D 中将 Web 内容渲染为纹理。
DevExpress v24.2帮助文档正式发布上线了,请按版本按需下载~
本教程将向您展示如何用MyEclipse构建一个Web项目,欢迎下载最新版IDE体验!
在处理电子表格时,尤其是在专业和数据导向型环境中,正确设置 Excel 单元格内的数字格式至关重要。本文将介绍如何使用 Spire.XLS for Java 设置 Excel 单元格的数字格式,帮助轻松创建精美且结构清晰的电子表格。
用于快速高效地生成报表的附加组件
FastReport .Net一款全功能的Windows Forms、ASP.NET和MVC报表分析解决方案。
FastReport.MonoFastReport.Mono 是一款为Mono Framework设计的功能全面的报表生成工具。
FastReport CLX服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢