Spire.Doc 11.12.4 adds text shaping function for converting Word to PostScript
2023-12-18 08:29:24
We are pleased to announce the release of Spire.Doc 11.12.4. This version adds text shaping function for converting Word to PostScript (.NET 4.6.2 or later version supported). More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Adds text shaping function for converting Word to PostScript (.NET 4.6.2 or later version supported). Document document = new Document(); document.LoadFromFile("input.docx"); document.LayoutOptions.UseHarfBuzzTextShaper = true; // Enable with true, disable with false document.SaveToFile("output.ps", FileFormat.PostScript); Click the link to download Spire.Doc 11.12.4: https://www.e-iceblue.com/Download/download-word-for-net-now.html More information of Spire.Doc new release or hotfix: https://www.e-iceblue.com/forum/spire-doc-new-release-or-hotfix-t4749.html
E-ICEBLUE Christmas Offer - 20% OFF for New Purchases
2023-12-14 05:48:37
With Christmas 2023 just around the corner, we would like to wish you a Merry Christmas and a Happy New Year! To thank you for your trust and support, we will launch the biggest promotion this year from December 15, 2023 to January 15, 2024. During this period, a variety of discount programs will be offered to help users purchase our products at more affordable prices. This is a great opportunity to purchase a license at a great discount if you are satisfied with the trial results. If you already have a license, you can also enjoy additional discounts when…
Spire.Presentation 8.12.2 supports converting master pages to images
2023-12-13 10:04:24
We are excited to announce the release of Spire.Presentation 8.12.2. This version supports converting master pages to images. Besides, it also enhances the conversion from PowerPoint to PDF. Moreover, it fixes the issue that the effect was incorrect after changing the position of the chart label. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-2397 Supports converting master pages to images. Presentation ppt = new Presentation(); ppt.LoadFromFile("1.pptx"); for (int i = 0; i < ppt.Masters[0].Layouts.Count; i++) { Image image = ppt.Masters[0].Layouts[i].SaveAsImage(); String fileName = String.Format("{0}.png", i); image.Save(fileName, System.Drawing.Imaging.ImageFormat.Png);…
Spire.Doc for Java 11.12.1 supports setting left and right indents by characters
2023-12-13 09:49:30
We are pleased to announce the release of Spire.Doc for Java 11.12.1. This version supports setting left and right indents by character. The conversion from Word to PDF and HTML, and from HTML to Word have also been enhanced. In addition, some known issues have also been fixed in this version, such as the issue that setting the direction of a section to landscape didn’t take effect. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-9980 Supports setting left and right indents by character. paragraph.getFormat().setLeftIndentChars(2.5f); paragraph.getFormat().setRightIndentChars(5.5f); Bug SPIREDOC-9452…
Spire.PDF for C++ 9.12.0 enhances the conversion from PDF to Word
2023-12-13 01:58:57
We are excited to announce the release of Spire.PDF for C++ 9.12.0. This version enhances the conversion from PDF to Word. In addition, it also fixes the issue that the program threw "ExtractSignatureAsImages" when extracting images from PDF signatures. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-6334 Fixes the issue that the program threw "System.Exception" when converting PDF to Word. Bug SPIREPDF-6339 Fixes the issue that part of the content became blurry after converting PDF to Word. Bug SPIREPDF-6404 Fixes the issue that the program threw "ExtractSignatureAsImages" when…
Spire.Doc 11.12.2 supports shaping text when converting Word to PCL
2023-12-12 09:58:04
We are excited to announce the release of Spire.Doc 11.12.2. This version supports text shaping in Word to PostScript conversion (.NET 4.6.2 or later version supported) and determining if a document is encrypted. It also enhances the conversion from Word to PDF and XPS as well as HTML to Word. Moreover, some known issues are fixed successfully in this version, such as the issue that finding text with regular expression failed to match. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Supports text shaping in Word to…
Spire.XLS 13.12 enhances the conversion from Excel to PDF
2023-12-12 07:54:03
We are delighted to announce the release of Spire.XLS 13.12. This version enhances the conversion from Excel to PDF. Besides, many known issues are fixed in this version, such as the issue that the calculation of some formulas failed. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREXLS-4838 Fixes the issue that it threw System.IndexOutOfRangeException and System.NullReferenceException exceptions when converting worksheets to HTML documents in multi-threaded parallel. Bug SPIREXLS-4899 Fixes the issue that the VLOOKUP function was parsed incorrectly. Bug SPIREXLS-4969 Fixes the issue that the obtained transparency value…
Spire.PDF for Python 9.12.0 supports creating list box form fields
2023-12-08 09:23:06
We are excited to announce the release of Spire.PDF for Python 9.12.0. This version supports creating list box form fields and defining unordered markup styles. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-6415 Supports creating list box form fields. listBoxField = PdfListBoxField(page, "listbox") listBoxField.Items.Add(PdfListFieldItem("Item 1", "item1")) listBoxField.Items.Add(PdfListFieldItem("Item 2", "item2")) listBoxField.Items.Add(PdfListFieldItem("Item 3", "item3")) listBoxField.Bounds = listboxBound listBoxField.Font = font listBoxField.SelectedIndex = 0 doc.Form.Fields.Add(listBoxField) New feature SPIREPDF-6416 Supports defining unordered markup styles. marker = PdfMarker(PdfUnorderedMarkerStyle.Asterisk) Click the link below to get Spire.PDF for Python 9.12.0: https://www.e-iceblue.com/Download/Spire-PDF-Python.html