We are excited to announce the release of Spire.XLS for JavaScript 15.5.0. This version adds 19 new features, such as grouping Shapes, enabling revision mode, and embedding images into cells. Moreover, it also upgrades SkiaSharp and enhances the conversion from Shape to images. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Supports 19 new features, including: Groupe Shapes. const workbook = wasmModule.Workbook.Create(); const sheet = workbook.Worksheets.get(0); const shape1 = sheet.PrstGeomShapes.AddPrstGeomShape(1, 3, 50, 50, spirexls.PrstGeomShapeType.RoundRect); const shape2 = sheet.PrstGeomShapes.AddPrstGeomShape(5, 3, 50, 50, spirexls.PrstGeomShapeType.Triangle); const groupShapeCollection = sheet.GroupShapeCollection; groupShapeCollection.Group([shape1,…
We're pleased to announce the release of Spire.PDF 11.4.10. This version supports printing using .NET Standard DLL and retrieving PdfHideAction in buttons. Moreover, some known issues that occurred when converting PDF to images and saving files have also been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-7372 Supports retrieving PdfHideAction in buttons. //Initialize an instance of the PdfDocument instance PdfDocument doc = new PdfDocument(); //Load a PDF document doc.LoadFromFile(inputFile); //Initialize an instance of the StringBuilder class StringBuilder sb = new StringBuilder(); //Get the form from…
We are excited to announce the release of Spire.Doc for Python 13.4.6. The latest version supports matching and finding all keywords within paragraphs. Besides, some known bugs are fixed in this update, such as the issue that the text was garbled when converting Word to TXT. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-10348 SPIREDOC-11127 Supports matching and finding all keywords within paragraphs. #Create word document document = Document() #Load the document from disk. document.LoadFromFile(inputFile) #Insert the paragraphs of document for i in range(document.Sections.Count): section = document.Sections.get_Item(i)…
We are delighted to announce the release of Spire.PDF for Android via Java 10.4.0. This version supports setting 'PreserveAllowedMetadata=true' when using PdfStandardsConverter. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-6921 Supports setting 'PreserveAllowedMetadata=true' when using PdfStandardsConverter. PdfStandardsConverter converter = new PdfStandardsConverter(stream); converter.Options.PreserveAllowedMetadata = true; Click the link below to get Spire.PDF for Android via Java 10.4.0: https://www.e-iceblue.com/Download/pdf-for-android-via-java.html
We're pleased to announce the release of Spire.XLS 15.4.4. This version adds support for several new formulas, and also supports auto-fitting row height in merged cells spanning multiple columns in a single row. Besides, some issues that occurred when converting Excel to PDF and saving files have been successfully fixed. More details are shown below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-5697 Supports auto-fitting row height in merged cells spanning multiple columns in a single row. Workbook workbook = new Workbook(); workbook.LoadFromFile(@"in.xlsx"); Worksheet sheet= workbook.Worksheets[0]; AutoFitterOptions options = new AutoFitterOptions(); options.AutoFitMergedCells…
We are excited to announce the release of Spire.Office for Java 10.4.0. In this version, Spire.Doc for Java enhances the conversions from Word to HTML/PDF; Spire.XLS for Java supports creating a slicer using table data; Spire.Presentation for Java enhances the conversion from PowerPoint to images; Spire.PDF for Java supports signing with "digitalsignatures.PdfCertificate" using byte[] certificate data. Besides, a lot of known issues are fixed successfully in this version. More details are listed below. Click the link to download Spire.Office for Java 10.4.0: https://www.e-iceblue.com/Download/office-for-java.html Here is a list of changes made in this release Spire.Doc for Java New feature SPIREDOC-11117 Optimizes…
We are excited to announce the release of Spire.PDF for Java 11.4.2. This version supports using the byte[] certificate data when signing with "digitalsignatures. PdfCertificate". It also enhances the conversion from PDF to PDF/A and PowerPoint. Moreover, some known issues are fixed successfully in this version, such as the issue that the data extracted from tables was incorrect. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-7460 Supports using the byte[] certificate data when signing with "digitalsignatures. PdfCertificate". PdfDocument pdf = new PdfDocument(); pdf.loadFromFile(inputFile); FileInputStream instream = new…
We're glad to announce the release of Spire.Presentation 10.4.6. This version supports inserting formulas in table cells and reading CustomerData of Shape. In addition, some issues that occurred when converting PPTX to PDF/SVG and opening PowerPoint files have been successfully fixed. Check below for more details. Here is a list of all changes made in this release. Category ID Description New feature SPIREPPT-2772 Supports reading CustomerData of Shape. Presentation ppt = new Presentation(); ppt.LoadFromFile(inputFile); List dataList = ppt.Slides[0].Shapes[1].CustomerDataList; Console.WriteLine(dataList.Count); for(int i = 0; i < dataList.Count; i++) { string name = dataList[i].Name; string content = dataList[i].XML; File.WriteAllText(outputFile + name, content);…
page 24