Browse our Products
Aspose.Words for Python via .NET 25.10 Release Notes
Major Features
There are 69 improvements and fixes in this regular monthly release. The most notable are:
- Text Export: Enhanced plain text conversion by adding the ability to export Office Math objects as LaTeX expressions.
- PDF Export: Introduced a new save option for more precise control over the tagging of floating shapes as either inline or block-level elements.
- PDF/UA Export & Accessibility: Improved compliance by correctly tagging horizontal rules as artifacts, enhancing the experience for users of assistive technologies.
Full List of Issues Covering all Changes in this Release
Expand to view the full list of issues.
- Consider preserving empty paragraphs in textboxes in PDF structure
- Export oMath (OOXML Math) as LaTex based expressions upon converting to Text
- Mark horizontal rules as decorative figures when saving to PDF/UA
- Support MSO properties during import tables
- Add -aw-border-color CSS round-trip property
- DOCX to Grayscale PDF rendering issue
- Add support for EPS images
- Add public API to get OfficeMath value in LaTeX format
- Saving DOCX as PCL loses bold and spacing
- Bounds are correct only after setting the width/height of the groupShape
- Content vertical position is incorrect it table cell after rendering
- Content in document header overlaps after rendering
- Position of images in header is incorrect after rendering
- An exception is thrown for JsonDataSource and JsonSimpleValueParseMode.Strict
- Setting GroupShape Width and Height does not return the correct BoundInPoints for the shape
- Compare result does not match MS Word output
- Vertical hyphen orientation changed to horizontal upon rendering to image (.NET 8)
- Axis title and legend positions moved upon DOCX to PDF
- Incorrect export barcode and unexpected union of paragraphs upon PDF import
- Image is tagged outside the table
- Import of MsoHtml lists differs from MS Word’s result
- Hyperlinks are lost after PDF to DOCX conversion
- QR code from HTML is rendered improperly
- HTML conditional comments are parsed incorrectly
- Incorrect MathML output with parentheses when converting ODT to HTML
- StructureDocumentTag content is not exported properly to HTML
- Exception is thrown while converting Docx to Html
- Track changes partially lost when saving DOCX with dropdown content controls mapped to Custom XML
- Character is rendered as missed glyph
- PDF is improperly converted to DOCX
- Data labels are lost after rendering chart
- Chart rendering from customer generated DOCX
- MD to DOCX: HTML table is not rendered in output file
- NullReferenceException when saving DOCX to PDF
- Shape becomes opaque and hides content after rendering
- List numbering is not retained after extracting pages
- Equation is not rendered inside the table
- DOCX to PDF: Content control export brakes layout
- InvalidOperationException is thrown upon saving document after updating SDT
- Incorrect alignment of labels on X axis of charts
- Checkboxes are not exported in the output file
- ArgumentOutOfRangeException on DOCX to XLSX re-saving
- Compare result does not match MS Word output
- Content is moved to the next page after open/save RTF
- Tables are recognized improperly upon loading PDF document
- Cell background is imported from RTF improperly
- Too small height of row in XLSX output
- ArgumentOutOfRangeException upon rendering to PDF
- Arabic numbers changed to European after adding HarfBuzzTextShaperFactory
- Document corruption after using XmlMapping.SetMapping
- Insert HTML works slow
- Reverse order of Arabic text characters in SVG export
- Text direction in shape is incorrect after rendering
- FileCorruptedException is thrown upon loading DOCX document
- Aspose.Words does not allow using DoubleStrikeThrough effect for insert and movedTo revisions
- Font variation parameters are missing in TTFont
- Incorrect size of plot area with a manual layout if type of the manual layout is “Outer”.
- Font is substituted even if it is available
- Wrong table layout when converting PDF to DOCX
- Extra spaces appears in URLs after convertion PDF to MD
- HarfBuzz caching issue with variable fonts
- Page reference numbers issue
- Incorrect font is applied when converting DOCX to Fixed-HTML
- Shared static state between different Document instances corrupts font substitution
- Inconsistent behavior with UpdatePageLayout() when using tables with different column counts
- FontSubstitution adds an additional file to the generated output
- Parentheses are not exported properly to MathML
- Matrix brackets are not displayed when HtmlOfficeMathOutputMode.MathML is used
- Vertical bars brackets in equation are lost after converting to HTML with HtmlOfficeMathOutputMode.MathML
Public API and Backward Incompatible Changes
This section lists public API changes that were introduced in Aspose.Words for Python via .NET 25.10. It includes not only new and obsoleted public methods, but also a description of any changes in the behavior behind the scenes in Aspose.Words for Python via .NET which may affect existing code. Any behavior introduced that could be seen as regression and modifies the existing behavior is especially important and is documented here.
Added ability to export oMath (OOXML Math) as LaTex based expressions upon converting to Text.
A new public property office_math_export_mode has been added to Aspose.Words.Saving.TxtSaveOptions class, and a TxtOfficeMathExportMode enumeration into Aspose.Words.Saving namespace.
This use case explains how to export OfficeMath equations as Latex while saving document to Text:
doc = aw.Document(file_name=MY_DIR + 'Office math.docx')
save_options = aw.saving.TxtSaveOptions()
save_options.office_math_export_mode = aw.saving.TxtOfficeMathExportMode.LATEX
doc.save(file_name=ARTIFACTS_DIR + 'TxtSaveOptions.ExportOfficeMathAsLatexToText.txt', save_options=save_options)Added new public option PdfSaveOptions.export_floating_shapes_as_inline_tag.
A new public option export_floating_shapes_as_inline_tag has been added to PdfSaveOptions class.
This use case explains how to select between inline and block-level tag export for floating shapes:
doc = aw.Document(file_name=MY_DIR + 'Floating object.docx')
save_options = aw.saving.PdfSaveOptions()
save_options.export_floating_shapes_as_inline_tag = True
doc.save(file_name=ARTIFACTS_DIR + 'PdfSaveOptions.ExportFloatingShapesAsInlineTag.pdf', save_options=save_options)