Spire.Doc for Python 12.4.0 supports macOS system
2024-04-26 02:34:00
We are delighted to announce the release of Spire.Doc for Python 12.4.0. This version supports macOS system. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Supports macOS system. Click the link below to get Spire.Doc for Python 12.4.0: https://www.e-iceblue.com/Download/Spire-Doc-Python.html
Spire.Doc for Python 12.3.2 supports getting revisions
2024-03-20 09:07:00
We are pleased to announce the release of Spire.Doc for Python 12.3.2. This version supports getting revisions. It also fixes the issue that the program threw a "TypeError" error when the keyword was not matched using FindString(). More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-10366 Supports getting revisions. doc1 = Document(inputFile_1) doc2 = Document(inputFile_2) doc1.Compare(doc2, "Author") revisions = DifferRevisions(doc1) content = "" m = 0 n = 0 insertRevisionList = revisions.InsertRevisions deleteRevisionList = revisions.DeleteRevisions for i in range(0, insertRevisionList.__len__()): # if isinstance(insertRevisionList[i], TextRange): if insertRevisionList[i].DocumentObjectType == DocumentObjectType.TextRange:…
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.Doc for Python 12.2.0 fixes the issue that the product package couldn't be installed with Python 3.7
2024-02-06 05:51:37
We are pleased to announce the release of Spire.Doc for Python 12.2.0. This version fixes the issue that the product package couldn’t be installed with Python 3.7. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-10288 Fixes the issue that the program failed to request resources when installing the product package with Python3.7. Click the link below to download Spire.Doc for Python 12.2.0: https://www.e-iceblue.com/Download/Spire-Doc-Python.html
Spire.Doc for Python 12.1.0 adds a new custom exception class SpireException
2024-01-09 07:32:13
We are pleased to announce the release of Spire.Doc for Python 12.1.0. This version adds a new custom exception class SpireException. In addition, the issue that setting table borders was invalid has also been fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Adds a new custom exception class SpireException. Bug SPIREDOC-10028 Fixes the issue that setting table borders was invalid. Click the link below to download Spire.Doc for Python 12.1.0: https://www.e-iceblue.com/Download/Spire-Doc-Python.html