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; }