We're pleased to announce the release of Spire.XLS for Python 14.2.2. This latest version of the library now includes support for macOS system and addresses a previously identified issue. More details are as follows. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-5002 Supports macOS System. Bug SPIREXLS-5109 Fixes the issue that running an application with Python 3.7 threw the exception "cannot import name 'get_args' from 'typing' ". Click the link below to get Spire.XLS for Python 14.2.2: https://www.e-iceblue.com/Download/Spire-XLS-Python.html
We are pleased to announce the release of Spire.Presentation for Python 9.3.0. This version fixes some known issues, such as the issue that getting custom properties of a document failed. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-2433 Fixes the issue that the position of shapes changed after ungrouping them. Bug SPIREPPT-2444 Fixes the issue that getting custom properties of a document failed. Bug SPIREPPT-2446 Fixes the issue that added custom properties were displayed incorrectly. Click the link below to get Spire.Presentation for Python 9.3.0: https://www.e-iceblue.com/Download/Spire-Presentation-Python.html
We are delighted to announce the release of Spire.Office for Java 9.2.0. In this version, Spire.XLS for Java supports saving Kingdraw drawn OLE objects as images. Spire.Barcode for Java supports adding images in the middle of QR codes. In addition, many known issues are fixed in this version. More details are listed below. Click the link to download Spire.Office for Java 9.2.0: https://www.e-iceblue.com/Download/office-for-java.html Here is a list of changes made in this release Spire.XLS for Java Category ID Description New feature SPIREXLS-5046 Supports saving Kingdraw drawn OLE objects as images. com.spire.xls.Workbook workbook = new com.spire.xls.Workbook(); workbook.loadFromFile("data.xlsx"); Worksheet sheet = workbook.getWorksheets().get(0);…
We are happy to announce the release of Spire.Presentation for Java 9.2.8. This version fixes the issue that the program threw "NullPointerException" error when loading a PPT document. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-2440 Fixes the issue that the program threw "NullPointerException" error when loading a PPT document. Click the link below to download Spire.Presentation for Java 9.2.8: https://www.e-iceblue.com/Download/presentation-for-java.html
We are pleased to announce the release of Spire.Doc 12.2.10. This version supports parsing GIF format content in Word documents. In addition, some known issues have also been fixed, such as the issue that the incorrect bullets were retrieved. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-10052 Supports parsing GIF format content in Word documents. Bug SPIREDOC-10154 Fixes the issue that incorrect bullets were retrieved. Bug SPIREDOC-10160 Fixes the issue that GIF format was converted to PNG format after mail merge. Bug SPIREDOC-10233 Fixes the issue that…
We are delighted to announce the release of Spire.PDF for Java 10.2.6. This version fixes many known issues, such as the issue that the result of signature verification was incorrect. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-6523 Fixes the issue that the program threw java.lang.NullPointerException exception when creating a template for the first page. Bug SPIREPDF-6527 Fixes the issue that compression of PDF documents did not work. Bug SPIREPDF-6534 Fixes the issue that the program threw java.lang.NullPointerException when comparing documents. Bug SPIREPDF-6535 Fixes the issue that the…
We are excited to announce the release of Spire.Doc for C++ 12.2.1. This version supports obtaining page content through fixed layout. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Supports obtaining page content through fixed layout. // Specify the file path wstring input_path = DATAPATH; wstring inputFile = input_path + L"in.docx"; wstring output_path = OUTPUTPATH; wstring outputFile = output_path + L"out.txt"; // Create a new instance of Document intrusive_ptr<Document> document = new Document(); //Load the document from the specified file document->LoadFromFile(inputFile.c_str(), FileFormat::Docx); intrusive_ptr<FixedLayoutDocument> layoutDoc = new FixedLayoutDocument(document);…
We are happy to announce the release of Spire.Doc for Python 12.2.1. This version supports obtaining page content through fixed layout. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Supports obtaining page content through fixed layout. def WriteAllText(fpath:str,content:str): with open(fpath,'w',encoding="utf-8") as fp: fp.write(content) # Specify the file path inputFile = "./Data/Sample.docx" outputFile = "output.txt" # Create a new instance of Document doc = Document() # Load the document from the specified file doc.LoadFromFile(inputFile, FileFormat.Docx) # Create a FixedLayoutDocument object using the loaded document layoutDoc = FixedLayoutDocument(doc) result…
page 42