Spire.Office 8.4.0 Spire.Office Patch

这篇具有很好参考价值的文章主要介绍了Spire.Office 8.4.0 Spire.Office Patch。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

Spire.Office for .NET is a combination of Enterprise-Level Office .NET API offered by E-iceblue. It includes Spire.Doc, Spire.XLS, Spire.Spreadsheet, Spire.Presentation, Spire.PDF, Spire.DataExport, Spire.OfficeViewer, Spire.PDFViewer, Spire.DocViewer, Spire.Barcode and Spire.Email. Spire.Office contains the most up-to-date versions of the above .NET API.

With Spire.Office for .NET, developers can create a wide range of applications. It enables developers to open, create, modify, convert, print, View MS Word, Excel, PowerPoint and PDF documents. Furthermore, it allows users to export data to popular files such as MS Word/Excel/RTF/Access, PowerPoint, PDF, XPS, HTML, XML, Text, CSV, DBF, Clipboard, SYLK, PostScript, PCL, etc.

Spire.Office for .NET can be linked into any type of a 32-bit or 64-bit .NET application including ASP.NET, Web Services and WinForms for .NET Framework version 2.0 to 4.5. Spire.Office also supports to work on .NET Core, .NET 5.0, .NET 6.0, Microsoft Azure, Mono Android and Xamarin.iOS.

Spire.Office 8.4.0 Spire.Office Patch

 文章来源地址https://www.toymoban.com/news/detail-422640.html

Here is a list of changes made in this release
Spire.Doc
Category ID Description
New feature SPIREDOC-5044 Supports setting line types(dashed/dotted) in shape objects.
Document doc = new Document();
Section sec = doc.AddSection();
Paragraph para1 = sec.AddParagraph();
ShapeObject shape1 = para1.AppendShape(100, 100, ShapeType.Line);
shape1.FillColor = Color.Purple;
shape1.StrokeColor = Color.Black;
shape1.LineStyle = ShapeLineStyle.Single;
shape1.LineDashing = LineDashing.Dash;
doc.SaveToFile("InsertShapes.docx", Spire.Doc.FileFormat.Docx2013);
New feature SPIREDOC-8280 Supports Docx2016 and Docx2019 file formats.
Spire.Doc.FileFormat.Docx2016
Spire.Doc.FileFormat.Docx2019
Bug SPIREDOC-8289 Fixes the issue that the content was misplaced when converting Word documents to PDF.
Bug SPIREDOC-8770 Fixes the issue that the table content lost when converting Word documents to PDF.
Bug SPIREDOC-8930 Fixes the issue that the table style was incorrect after copying content from Document A to Document B.
Bug SPIREDOC-8958 Fixes the issue that the pagination was incorrect when converting Word to PDF.
Bug SPIREDOC-9081 Fixes the issue that the header content was incorrect when converting Word to PDF.
Bug SPIREDOC-9111 Fixes the issue that the application threw "System.IndexOutOfRangeException" when converting Word to PDF.
Bug SPIREDOC-9231 Fixes the issue that the application threw "System.ArgumentException" when merging Word documents.
Spire.PDF
Category ID Description
New feature SPIREPDF-5747 Supports automatic font size setting for textbox form fields.
   PdfDocument pdf = new PdfDocument();
            pdf.LoadFromFile(input);
            PdfFormWidget formWidget = pdf.Form as PdfFormWidget;
            foreach(PdfField field in formWidget.FieldsWidget.List)
            {
                if(field is PdfTextBoxFieldWidget)
                {
                    PdfTextBoxFieldWidget textBoxField = field as PdfTextBoxFieldWidget;
                    if(textBoxField.Name == "Name of the Company")
                    {
                        textBoxField.Font = new PdfTrueTypeFont(new Font("Arial", 16), true);
                        textBoxField.FontSizeAuto = true;
                        textBoxField.Text = "e-iceblue";
                    }
                }
            }
            pdf.SaveToFile(output);
Bug SPIREPDF-5785 Fixes the issue that the content overlapped after replacing text.
Bug SPIREPDF-5801 Fixes the issue that the text effect of setting adaptive font was incorrect.
Bug SPIREPDF-5804 Fixes the issue that the converted OFD file was blank when opened with Jinrui OFD reader and Chaoyue ofd reader to view the content.
Bug SPIREPDF-5825 Fixes the issue that the memory overflowed when converting PDF to images.
Bug SPIREPDF-5835 Fixes the issue that the stamp was incorrect when converting OFD to PDF.
Bug SPIREPDF-5841 Fixes the issue that the program threw AccessViolationException when converting PDF to images.
Bug SPIREPDF-5850 Fixes the issue that the value of getting new metadata is null.
Bug SPIREPDF-5852 Fixes the issue that the memory released mechanism of the PdfTrueTypeFont object.
Bug SPIREPDF-5864 Fixes the issue that the program threw System.IndexOutOfRangeException when converting OFD to PDF.
Bug SPIREPDF-5868 Fixes the issue that the colors were rendered incorrectly when converting PDF to images.
Bug SPIREPDF-5869 Fixes the issue that the “checked” property in PdfCheckBoxWidgetFieldWidget was invalid.
Bug SPIREPDF-5876 Fixes the issue that the content of the picture inside was lost when converting PDF to images.
Bug SPIREPDF-5881 Fixes the issue that the the program threw System.NullPointerException when the Galaxy Kylin ARM system extracted PDF text.
Spire.Email
Category ID Description
Bug SPIREEMAIL-65 Fixes the issue that the email date information read is correct.

到了这里,关于Spire.Office 8.4.0 Spire.Office Patch的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Spire.Office for Java 8.7.2 -NEW-23.7.18

    Spire.Office for Java is a combination of Enterprise-Level Office Java APIs offered by E-iceblue. It includes Spire.Doc for Java, Spire.XLS for Java, Spire.Presentation for Java, Spire.PDF for Java and Spire.Barcode for Java. Developers can use Spire.Office for Java to perform a wide range of office document operations in Java applications, such as opening,

    2024年02月16日
    浏览(35)
  • git补丁操作:git生成patch和应用patch

    一、生成patch 1、拉取代码仓 2、在clone到本地的代码目录中,例如对README.md文件进行了修改。然后使用 git status 命令查看工作目录和暂存区的状态。   (示例修改是在README.md文件开头添加了如下内容)   3、生成patch   查看README.patch的内容(可以用Notepad++)   二、应用patch

    2024年02月12日
    浏览(62)
  • Elasticsearch:Combined fields 查询

    有时一个匹配项可以覆盖多个文本字段。 在这种情况下,你可以使用 combined_fields 查询来搜索多个文本字段,就好像它们的值实际上已被索引到一个组合字段中一样。 除此之外,combined_fields 的主要好处是强大且易于理解的评分算法。这种做法也有类似于 copy_to​​​​​​​

    2023年04月19日
    浏览(34)
  • hadoop中combiner是什么

    Combiner(合并器) 在Hadoop中,Combiner(合并器)是一个可选的阶段,用于优化MapReduce任务的性能。它是在Map阶段输出之后、规约(reduction)之前执行的。 Combiner的作用是在Map任务的本地节点上对Map阶段的输出进行局部聚合。它接收Map任务输出的键值对,并将具有相同键的键值

    2024年02月12日
    浏览(36)
  • BZOJ2982 combination(lucas定理)

    题目大意 LMZ有 n n n 个不同的基友,他每天晚上要选 m m m 个一起玩,而且要求每天晚上的选择都不一样。那么LMZ能够持续多少个这样的夜晚呢?当然,LMZ的一年有10007天,所以他想知道答案   m o d   10007 bmod 10007 mod 10007 的值。 有 t t t 组数据。 1 ≤ t ≤ 200 , 1 ≤ m , n ≤ 20

    2024年02月06日
    浏览(33)
  • Lintcode 152 · Combinations (组合好题)

    152 · Combinations Algorithms Medium Description Given two integers n and k. Return all possible combinations of k numbers out of 1, 2, … , n. You can return all combinations in any order, but numbers in a combination should be in ascending order. Example Example 1: Input: n = 4, k = 2 Output: [[1,2],[1,3],[1,4],[2,3],[2,4],[3,4]] Example 2: Input: n = 4,

    2024年02月05日
    浏览(37)
  • 5.MapReduce之Combiner-预聚合

    在 MR、Spark、Flink 中,常用的减少网络传输的手段。 通常在 Reducer 端合并,shuffle 的数据量比在 Mapper 端要大,根据业务情况及数据量极大时,将大幅度降低效率;且预聚合这种方式也是有其缺点,不能改变业务最终的逻辑,否则会出现,计算结果不正确的情况。 如下图,可

    2024年02月02日
    浏览(33)
  • Spire.Barcode for Java 5.1.0 + Spire.Barcode for .NET 7.2.0

    Spire.Barcode for Java is a professional barcode component specially designed for developers to generate, read and scan 1D 2D barcodes on Java applications (J2SE and J2EE). Developers and programmers can use Spire.Barcode to add Enterprise-Level barcode formats to their Java applications quickly and easily. Spire.Barcode for Java provides a very easy way to

    2024年02月16日
    浏览(42)
  • spire.doc.jar

    https://mvnrepository.com/ https://mvnrepository.com/search?q=spire.doc https://mvnrepository.com/artifact/e-iceblue/spire.doc ==== https://repo.e-iceblue.cn/repository/maven-public https://repo.e-iceblue.cn/#browse/browse:maven-public

    2024年02月12日
    浏览(40)
  • Spire.Doc

    Free Spire.Doc for Java  是一款免费、专业的 Java Word 组件,开发人员使用它可以轻松地将 Word 文档创建、读取、编辑、转换和打印等功能集成到自己的 Java 应用程序中。作为一款完全独立的组件,Free Spire.Doc for Java的运行环境无需安装 Microsoft Office。 Free Spire.Doc for Java 能执行多种

    2024年02月09日
    浏览(52)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包