• Spire.Office 8.9.3 for .NET cRACK


    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.

    Here is a list of changes made in this release

    Spire.Presentation

    CategoryIDDescription
    New featureSPIREPPT-2351Supports setting the time for automatic slide switching.
    Presentation ppt = new Presentation();
    ppt.LoadFromFile("input.pptx");
    ppt.Slides[0].SlideShowTransition.AdvanceAfterTime = 1000;
    ppt.Slides[1].SlideShowTransition.SelectedAdvanceAfterTime = false;
    ppt.SaveToFile("output.pptx", FileFormat.Pptx2013);
    ppt.Dispose();
    New featureSPIREPPT-2353Optimizes the names of all options under Radial Gradient Style type, marking the original options as deprecated and adding the same options as in MS PowerPoint tools.
    Previous options:
    FromCorner1
    FromCorner2
    FromCorner3
    FromCorner4
    New options:
    FromTopLeftCorner
    FromBottomLeftCorner
    FromTopRightCorner
    FromBottomRightCorner
    New featureSPIREPPT-2354Supports setting and reading the transparency and brightness of the gradient stop styles.
    Presentation ppt = new Presentation();
    ppt.LoadFromFile("input.pptx");
    StringBuilder stringBuilder = new StringBuilder();
    IAutoShape shape = (ppt.Slides[0].Shapes[0] as GroupShape).Shapes[2] as IAutoShape;
    GradientStopCollection stops = shape.Fill.Gradient.GradientStops;
    for (int i = 0; i < stops.Count; i++)
    {
        float transparency = stops[i].Color.Transparency;
        float brightness = stops[i].Color.Brightness;
        stringBuilder.AppendLine("stops" + i + "transparency: " + transparency + " brightness: " + brightness);
    }
    File.WriteAllText("output.txt", stringBuilder.ToString());
    
    stops[0].Color.Transparency = 0.5f;
    stops[0].Color.Brightness = -0.32f;
    ppt.SaveToFile("output.pptx", FileFormat.Auto);
    ppt.Dispose();
    BugSPIREPPT-2322Fixes the issue that the collection of corner coordinates of polygons obtained was incomplete.
    BugSPIREPPT-2323Fixes the issue that the text direction changed after saving slides to images.
    BugSPIREPPT-2334Fix the issue that it failed to retrieve connection point coordinates for line connector shapes.

    Spire.PDF

    CategoryIDDescription
    BugSPIREPDF-6130Fixes the issue that the program threw "System.StackOverflowException" when converting PDF to images.
    BugSPIREPDF-6219Fixes the issue that the program threw "System.ArgumentOutOfRangeException" when drawing HTML content.
    BugSPIREPDF-6229Fixes the issue that the size of split document was incorrect.
    BugSPIREPDF-6245Fixes the issue that the XFA checkbox form fields couldn't be filled.
    BugSPIREPDF-6254Fixes the issue that the program threw "System.FormatException" when converting OFD to PDF.
    BugSPIREPDF-6259Fixes the issue that a part of content lost when printing PDF files.
    BugSPIREPDF-6272Fixes the issue that the FontSizeAuto property for textbox form fields was incorrect.

    Spire.Doc

    CategoryIDDescription
    BugSPIREDOC-9455Fixes the issue that the content was incorrect after adding a footer copied from another document to a document and then converting it to a PDF document.
    BugSPIREDOC-9466Fixes the issue that extra shapes appeared after loading a document and saving it as a new document.
    BugSPIREDOC-9699Fixes the issue that the font of a document changed after updating the fields in the document and converting it to PDF.
    BugSPIREDOC-9743Fixes the issue that extra pictures appeared after loading a document and saving it as a new document.
    BugSPIREDOC-9767Fixes the issue that recognizing the Latex formula code "therefore" failed.
    BugSPIREDOC-9800Fixes the issue that the program threw System.StackOverflowException when loading a document.
    BugSPIREDOC-9833Fixes the issue that the content was garbled after converting Doc documents to PDF documents.
    BugSPIREDOC-9834Fixes the issue that the program threw System.NullReferenceException when converting Docx documents to PDF documents.
    BugSPIREDOC-9836Fixes the issue that the program threw System.NullReferenceException when replacing text.
    BugSPIREDOC-9852Fixes the issue that extra pictures appeared after replacing text and saving the document to PDF.
    BugSPIREDOC-9861Fixes the issue that the program failed to recognize the "<" MathML format in HTML content.
    BugSPIREDOC-9869Fixes the issue that pictures were lost after converting an HTML document to a PDF document.
    BugSPIREDOC-9878Fixes the issue that the symbols were rotated after converting Docx documents to PDF documents.
  • 相关阅读:
    前后端通信到底是怎样一个过程
    剑指 Offer 61. 扑克牌中的顺子
    Java核心知识体系4:AOP原理和切面应用
    总结-c#-反射
    C++智能指针简介
    Python学习七:数据库编程接口
    input输入函数
    算法 数据结构 双向环形链表 手撸环形链表 环形链表实现容器 环形链表添加修改删除获取大小 环形链表实现自定义容器 手撸容器 双向环形哨兵链表 数据结构(六)
    DNS (Domain Name System)域名系统工作原理
    冰冰学习笔记:泛型编程---模板简介
  • 原文地址:https://blog.csdn.net/john_dwh/article/details/133442167