终于支持转换为PDF 1.7标准啦!.NET版Aspose.Words v19.12邀您体验!
程序员文章站
2022-06-23 23:01:25
PDF 1.7标准发布已久,而令人兴奋的是,终于,.NET版Aspose Words转换升级,支持将PDF转换为PDF 1.7标准!近日,Aspose Words for .NET更新到了v19.12版,在Windows10上使用SystemFontSource时,支持用户安装的字体,OLE对象数据 ......
pdf 1.7标准发布已久,而令人兴奋的是,终于,.net版aspose words转换升级,支持将pdf转换为pdf 1.7标准!近日,aspose words for .net更新到了v19.12版,在windows10上使用systemfontsource时,支持用户安装的字体,ole对象数据公开给公共api等等9大新功能。(下载地址可在评论区查看)
主要特点
- 支持转换为pdf 1.7标准。
- 在windows10上使用systemfontsource时,支持用户安装的字体。
- 书签的新公共属性被公开。
- ole对象数据公开给公共api。
- linq reporting engine通过关系名称提供对相关datatable的访问。
具体更新内容
key | 概述 | 类别 |
---|---|---|
wordsnet-18367 | 中世纪字体:支持内联数字形式 | 新功能 |
wordsnet-17731 | 支持将word文档转换为pdf 1.7标准 | 新功能 |
wordsnet-11083 | 支持新的pdf标准 | 新功能 |
wordsnet-1860 | 要执行的支持属性“执行简单邮件合并时应重新启动列表编号”。 | 新功能 |
wordsnet-10593 | 将支持web扩展添加到模型中 | 新功能 |
wordsnet-18634 | 提供对在word文档中添加动态webextension元素节点的支持 | 新功能 |
wordsnet-19531 | 将win10上用户字体文件夹的处理添加到systemfontsource | 新功能 |
wordsnet-19238 | 支持使用linq reporting engine的关系名称访问相关的datatable | 新功能 |
wordsnet-18897 | 将ole对象数据公开给公共api | 新功能 |
wordsnet-14286 | 从docx转换为doc / pdf后,文本的位置会更改 | 增强功能 |
wordsnet-12678 | 改善表格书签 | 增强功能 |
wordsnet-15814 | pdf输出中的换行不正确 | 增强功能 |
wordsnet-18776 | word文档中带有比例字体的表将无法正确转换为pdf | 增强功能 |
wordsnet-14294 | 从docx转换为doc / pdf后,形状的位置发生了变化 | 增强功能 |
如果您有任何需求,请随时加入aspose技术交流群(642018183)
公共api更改
- 为vbaproject添加了clone()方法
/// /// performs a copy of the . /// /// the cloned vbaproject.public vbaproject clone()
- 为vbamodule添加了clone()方法
/// /// performs a copy of the . /// /// the cloned vbamodule.public vbamodule clone()
- wordsnet-18897:添加了一项功能,可以访问ole对象原始数据
byte[] oleformat.getrawdata();
- 添加了新的findreplaceoptions.uselegacyorder选项
/// /// true indicates that a text search is performed sequentially from top to bottom considering the text boxes. /// default value is false. /// public bool uselegacyorder { get; set; }
- 添加了新的rtfsaveoption.saveimagesaswmf
/// /// when true all images will be saved as wmf. /// /// /// this option might help to avoid wordpad warning messages. /// public bool saveimagesaswmf
- 将pdf 1.7添加到pdfcompliance枚举
/// /// specifies the pdf standards compliance level. /// public enum pdfcompliance { /// /// the output file will comply with the pdf 1.7 standard. /// pdf17, … }
- 新的公共属性已添加到bookmark类
/// /// returns true if this bookmark is a table column bookmark. /// public bool iscolumn { get; } /// /// gets the zero-based index of the first column of the table column range associated with the bookmark. /// /// /// returns -1 if this bookmark is not a table column bookmark. /// public int firstcolumn { get; } /// /// gets the zero-based index of the last column of the table column range associated with the bookmark. /// /// /// returns -1 if this bookmark is not a table column bookmark. /// public int lastcolumn { get; }