• Spire.Office for Java 7.6.4


    An independent Office library that allows developers to create, edit, convert, print Word,Excel,PowerPoint and PDF documents, and to generate and scan 1D&2D barcodes within Java applications. 

    Spire.Office for Java 7.6.4 . In this version, Spire.XLS for Java supports setting whether to export hidden worksheets when converting Excel to HTML; Spire.Presentation for Java supports cropping pictures in PowerPoint and setting default alternate font for format conversion; Spire.Doc for Java enhances the conversion from Word to PDF and Word to HTML. Additionally, many known bugs have been fixed successfully. More details are listed below.
    Here is a list of changes made in this release
    Spire.XLS for Java
    New featureSPIREXLS-3865Supports setting whether to export hidden worksheets when converting Excel to HTML.
    Workbook book=new Workbook();
    book.loadFromFile("test.xlsx");
    //false--- export the hiden worksheets
    //true--- not export the hiden worksheets
    book.saveToHtml("output.html",false); 
    New featureSPIREXLS-3872After converting Excel to HTML, a contrasting color border is added to the currently selected tab in the converted HTML.
    New featureSPIREXLS-3873After converting Excel to HTML, the spacing on both sides is added to the text of the worksheet tabs.
    BugSPIREXLS-3724Fixes the issue that updates chart data with wrong results.
    BugSPIREXLS-3764Fixes the issue that the content exceeded the cells after Excel was converted to images.
    BugSPIREXLS-3803Fixes the issue that "NullPointerException" was thrown when converting Excel to images.
    BugSPIREXLS-3815Fixes the issue that the background color and text color of the worksheet tab changed after converting Excel to HTML.
    BugSPIREXLS-3831Fixes the issue that the application hangs when converting Excel to PDF.
    BugSPIREXLS-3832Fixes the issue that sparklines were lost after copying sheets.
    BugSPIREXLS-3841Fixes the issue that macros were lost after saving the document.
    BugSPIREXLS-3867Fixes the issue that the application throws "ArrayIndexOutOfBoundsException" when loading an XML file.
    BugSPIREXLS-3871Fixes the issue that the content was offset after Excel was converted to HTML.
    BugSPIREXLS-3875Fixes the issue that setting DPI did not work when converting charts to images.
    BugSPIREXLS-3877Fixes the issue that some data values were incorrect after converting Excel to PDF.
    BugSPIREXLS-3907Fixes the issue that setting the cell background color to transparent does not work.
    Spire.Presentation for Java
    CategoryIDDescription
    New featureSPIREPPT-1848Supports setting default alternate font for format conversion.
    Presentation.setDefaultFontName("Arial");
    Presentation ppt = new Presentation();
    ppt.loadFromFile(inputFile);
    ppt.saveToFile(outputFile, FileFormat.PDF);
    //Used to reset the document conversion default font
    Presentation.resetDefaultFontName();
    New featureSPIREPPT-1962Supports cropping pictures in PowerPoint.
    SlidePicture slidePicture= (SlidePicture)presentation.getSlides().get(0).getShapes().get(0);
    //The crop start coordinates are adjusted according to the position of the original picture
    slidePicture.crop(slidePicture.getLeft()+50f,slidePicture.getTop()+50f,100f,200f);
    BugSPIREPPT-1945Fixes the issue that the application throws "ArrayIndexOutOfBoundsException" when setting custom font files.
    BugSPIREPPT-1959Optimizes the memory consumption of conversion from PowerPoint to images.
    Spire.Doc for Java
    CategoryIDDescription
    BugSPIREDOC-7542Fixes the issue that the content format was incorrect after converting Word to PDF.
    BugSPIREDOC-7574Fixes the issue that caused incorrect page number and blank page after converting Word to PDF.
    BugSPIREDOC-7848Fixes the issue that the application threw "OutOfMemory" when converting Word to PDF.
    BugSPIREDOC-7754Fixes the issue that the application threw "OutOfMemoryError" when converting Word to PDF in multithreading.
    BugSPIREDOC-7757Fixes the issue that the application threw "NullPointerException" when converting Word to HTML.
    BugSPIREDOC-7814Fixes the issue that the position of text was incorrect after converting Word to PDF.
    BugSPIREDOC-7844Fixes the issue that caused extra content after saving Word documents..
    BugSPIREDOC-7861Fixes the issue that the application threw "This is not a structured storage file." when merging Word documents.
    BugSPIREDOC-7894Fixes the issue that failed to find and highlight keyword in Word.
    BugSPIREDOC-7253Fixes the issue that the application threw "NullPointerException" when calling the autoFit method of table.
    BugSPIREDOC-7335Fixes the issue that the pagination was incorrect after converting Word to PDF.
    BugSPIREDOC-7523Fixes the issue that the image location was incorrect after converting Word to PDF.
    SPIREDOC-7753
    SPIREDOC-7929
    BugSPIREDOC-7709Fixes the issue that the content was incorrect after using NewEngine to convert Word to PDF.
    SPIREDOC-7788
    SPIREDOC-7893
    BugSPIREDOC-7823Fixes the issue that it failed to open the added image Ole in Word.
    BugSPIREDOC-7847Fixes the issue that the application threw "NullPointerException" when loading Word document.
    BugSPIREDOC-7849Fixes the issue that the textbox was truncated after converting Word to PDF.
    BugSPIREDOC-7853Fixes the issue that the text wrapping was incorrect after converting Word to PDF.
    BugSPIREDOC-7908Fixes the issue that caused incorrect page number after converting Word to PDF.
    BugSPIREDOC-7946Fixes the issue that the image format was incorrect after converting Word to PDF.
    BugSPIREDOC-7949Fixes the issue that the text was lost after converting Word to PDF.
    BugSPIREDOC-7950Fixes the issue that the table location was incorrect after converting Word to PDF.
    Spire.PDF for Java
    CategoryIDDescription
    BugSPIREPDF-5257Fixes the issue that there are extra black borders after converting PDF to images.
  • 相关阅读:
    JAVASketch2Mod网站计算机毕业设计Mybatis+系统+数据库+调试部署
    想找就能找!如何找回iPhone中被隐藏或主屏幕上被删除的应用程序
    D-star Lite算法及相关思考
    单元测试框架——Junit5
    基于JAVA+SpringMVC+MYSQL的健身房后台管理系统
    相似度检索Faiss模型
    SQL Server实现参数化增删改查Class类
    华为挑战良率难题,台积电老将曝1惊人内幕 | 百能云芯
    网络设置、ssh服务
    ELK日志保留7天-索引生命周期策略
  • 原文地址:https://blog.csdn.net/john_dwh/article/details/125428272