Spire.PDF for Java 10.2.6 fixes the issue that the result of signature verification was incorrect
2024-02-27 01:07:08
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…
Spire.Doc for C++ 12.2.1 supports obtaining page content through fixed layout
2024-02-26 08:56:54
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);…
Spire.Doc for Python 12.2.1 supports obtaining page content through fixed layout
2024-02-26 06:38:09
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…
Spire.XLS for Java 14.2.4 supports saving Kingdraw drawn OLE objects as images
2024-02-23 09:44:36
We are pleased to announce the release of Spire.XLS for Java 14.2.4. This version supports saving Kingdraw drawn OLE objects as images. What's more, some known issues are fixed successfully, such as the issue that the content was incorrect when converting Excel to PDF. More details are listed below. Here is a list of changes made in this release 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); Object o = sheet.getCellRange("C2").getFormulaValue(); if (sheet.hasOleObjects()) { for (int i = 0; i < sheet.getOleObjects().size(); i++) {…
Spire.Doc for Java 12.2.2 enhances the conversion from Word and RTF to PDF
2024-02-21 07:15:05
We are delighted to announce the release of Spire.Doc for Java 12.2.2. This version enhances the conversion from Word and RTF to PDF as well as Doc to Docx. Besides, a lot of known issues are fixed successfully in this version, such as the issue that the content of the updated table of contents was incorrect. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-9689 Fixes the issue that extra red vertical lines appeared after converting a Word document to a PDF document. Bug SPIREDOC-9911 Fixes the issue that…
E-iceblue has a 9-Day Spring Festival Holiday during 09/02/2024-17/02/2024
2024-02-08 02:37:50
As the Chinese New Year approaches, our office will be closed from 09/02/2024 to 17/02/2024 (GMT+8:00). During the holiday, your emails will be received as usual, and urgent issues will be addressed promptly by our on-duty staff. Please note that standard support may be limited during this time, so we kindly ask for your understanding and patience if you do not receive an immediate response. Note: Our purchase system is available 24/7 and will automatically send you the license file once you have completed the online order and payment. If you need a temporary license to evaluate the product, please…
Spire.PDF for Python 10.2.0 supports the PdfBitmap class
2024-02-08 02:32:11
We are pleased to announce the release of Spire.PDF for Python 10.2.0. This version supports the PdfBitmap class and supports obtaining all custom properties of the document. In addition, the issue that finding text failed has also been fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-6492 Supports the PdfBitmap class. New feature SPIREPDF-6518 Supports getting all custom properties of the document. doc = PdfDocument() doc.LoadFromFile(inputFile) docInfo=doc.DocumentInformation customProperties =docInfo.GetAllCustomProperties() New feature SPIREPDF-6525 Adds the PdfAttachmentAnnotationWidget.Data property to support obtaining attachment document data. New feature SPIREPDF-6538 Adds a…
Spire.PDFViewer 7.12.6 supports obtaining the coordinates of a mouse click relative to the PDF page content
2024-02-07 07:20:34
We are happy to announce the release of Spire.PDFViewer 7.12.6. This version supports obtaining the coordinates of a mouse click relative to the PDF page content. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDFVIEWER-454 Spire.PdfDocumentViewer supports obtaining the coordinates of a mouse click relative to the PDF page content. private void Form1_Load(object sender, EventArgs e) { this.pdfDocumentViewer1.LoadFromFile("1.pdf"); this.pdfDocumentViewer1.MouseDown += new MouseEventHandler(PV_Click); } private void PV_Click(object sender, MouseEventArgs e) { string outputFile = "out.Pdf"; string outputFile_TXT = "out.txt"; File.Delete(outputFile_TXT); if (e.Button == MouseButtons.Left) { PointF[] controlPositions = new…