Spire.Office 8.11.2 for NET fix Crack

2023-12-01 02:52
文章标签 office net crack spire fix 8.11

本文主要是介绍Spire.Office 8.11.2 for NET fix Crack,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

内容摘自来自互联网------或者SDK官方本身手册

Spire.Doc for .NET
A professional Word .NET library designed to create, read, write, convert and print Word document files in any .NET ( C#, VB.NET, ASP.NET, .NET Core, Xamarin ) application with fast and high quality performance.

Spire.XLS for .NET
A professional Excel .NET library that can be used to create, read, write, convert and print Excel files in any type of .NET ( C#, VB.NET, ASP.NET, .NET Core, Xamarin ) application.

Spire.Presentation for .NET
A professional PDF library applied to creating, writing, editing, handling and reading PDF files without any external dependencies within .NET ( C#, VB.NET, ASP.NET, .NET Core, Xamarin ) application.

Spire.PDF for .NET
A professional PowerPoint® compatible library that enables developers to create, read, write, modify, convert and print PowerPoint documents in any .NET ( C#, VB.NET, ASP.NET, .NET Core, Xamarin ) application.

Spire.Email for .NET
A professional Email library specially designed for developers to create, read and manipulate emails in any .NET ( C#, VB.NET, ASP.NET, .Net Core, .Net Standard, MonoAndroid, Xamarin iOS ) application.

Spire.Barcode for .NET
A professional barcode library specially designed for .NET developers ( C#, VB.NET, ASP.NET, .NET Core, .Net Standard, MonoAndroid, Xamarin.iOS ) to generate, read and scan 1D & 2D barcodes.

Spire.Office 8.11.2 is released
We are happy to announce the release of Spire.Office 8.11.2. In this version, Spire.Doc publicizes the enumeration of Spire.Doc.Publics.Drawing.FontStyle; Spire.PDF adds the new PdfImageHelper interface for image extraction, deletion, replacement and compression; Spire.Presentation releases several new features, such as obtaining the height and width of the text area within a shape and retrieving text from different lines within a shape. Besides, a lot of known issues are fixed successfully in this version. More details are listed below.
In this version, the most recent versions of Spire.Doc, Spire.PDF, Spire.XLS, Spire.Presentation, Spire.Email, Spire.DocViewer, Spire.PDFViewer, Spire.Spreadsheet, Spire.OfficeViewer, Spire.DataExport, Spire.Barcode are included.
DLL Versions:
Spire.Doc.dll v11.11.8
Spire.Pdf.dll v9.11.9
Spire.XLS.dll v13.11.4
Spire.Presentation.dll v8.11.1
Spire.Email.dll v6.5.8
Spire.Barcode.dll v7.2.3
Spire.DocViewer.Forms.dll v8.7.4
Spire.Spreadsheet.dll v7.4.3
Spire.PdfViewer.Forms.dll v7.12.1
Spire.PdfViewer.Asp v7.12.1
Spire.OfficeViewer.Forms.dll v8.11.2
Spire.DataExport.dll v4.9.0
Spire.DataExport.ResourceMgr.dll v2.1.0.
Here is a list of changes made in this release
Spire.Doc
CategoryIDDescription
New feature-Publicizes the enumeration Spire.Doc.Publics.Drawing.FontStyle.
New feature-Changes the namespace of the "FontStyle" in the "PrivateFontPath" structure to "Spire.Doc.Publics.Drawing".
Instructions:
Changes the method "public PrivateFontPath(string fontName, System.Drawing.FontStyle fontStyle, string fontPath)" to "public PrivateFontPath(string fontName, Spire.Doc.Publics.Drawing.FontStyle fontStyle, string fontPath)".
Changes the method "public PrivateFontPath(string fontName, System.Drawing.FontStyle fontStyle, string fontPath, bool useArabicConcatenationRules)" to "public PrivateFontPath(string fontName, Spire.Doc.Publics.Drawing.FontStyle fontStyle, string fontPath, bool useArabicConcatenationRules)".
BugSPIREDOC-9369Fixes the issue that the content formatting was incorrect after converting Word to PDF.
BugSPIREDOC-9456Fixes the issue that the pagination was incorrect after converting Word to PDF.
BugSPIREDOC-9594Fixes the issue that the content was not correct after converting HTML to PDF.
BugSPIREDOC-9716Fixes the issue that the program threw System.ArgumentException when converting ODT to PDF.
BugSPIREDOC-9764Fixes the issue that the page numbers of the table of contents were incorrectly positioned after merging Word documents and converting them to PDF.
BugSPIREDOC-9765Fixes the issue that the formatting of the table of contents was incorrect after merging Word documents and converting them to PDF.
BugSPIREDOC-9869Fixes the issue that images were not displayed after converting HTML to PDF.
BugSPIREDOC-9906Fixes the issue that the content of OLE objects cloned from RTF documents to Docx documents was not displayed completely.
BugSPIREDOC-9909Fixes the issue that the program threw System.InvalidOperationException when converting Word to image/PDF.
BugSPIREDOC-9923Fixes the issue that the newly added rows were not aligned after adding new rows to a Word table and converting it to PDF.
BugSPIREDOC-9924Fixes the issue that the program threw System.IndexOutOfRangeException when modifying the content of a Word table and converting the document to PDF.
BugSPIREDOC-9934Fixes the issue that editing restrictions were lost after saving a Doc format document as a new document.
Spire.PDF
CategoryIDDescription
New feature-Adds the new PdfImageHelper interface for image extraction, deletion, replacement and compression.
Key code snippets are as follows:
// Delete image:
imageHelper.DeleteImage(imageInfos[0]);
 
// Extract images:
int index = 0;
foreach (PdfImageInfo info in imageInfos)
{
    info.Image.Save(outputFile_I + string.Format("Image-{0}.png", index));
    index++;
}
 
// Replace image:
PdfImage image = PdfImage.FromFile(TestUtil.DataPath + "ImgFiles/E-iceblue logo.png");
imageHelper.ReplaceImage(imageInfos[0], image);
 
// Compress images:
foreach (PdfPageBase page in doc.Pages)
{
    foreach (PdfImageInfo info in imageHelper.GetImagesInfo(page))
    {
        bool success = info.TryCompressImage();
    }
}
BugSPIREPDF-5781Fixes the issue that two columns of the extracted PDF table were merged into one.
BugSPIREPDF-6225Fixes the issue that the result document of XPS to PDF conversion was blank.
BugSPIREPDF-6232Fixes the issue that it popped up page error when opening PDF converted from XPS with Adobe tools.
BugSPIREPDF-6355Fixes the issue that extra characters appeared in the content after converting PDF to XPS.
BugSPIREPDF-6361Fixes the issue that the program threw an exception System.NullReferenceException when loading PDF documents.
BugSPIREPDF-6320Improves the speed of converting PDF to images.
BugSPIREPDF-4552Fixes the issue that the extracted content from PDF was incorrect.
BugSPIREPDF-5949Fixes the issue that the resulting file became larger after splitting and merging PDFs.
BugSPIREPDF-6017Fixes the issue that the program crashed when converting PDF to SVG on Linux.
BugSPIREPDF-6273Fixes the issue that the table content extracted from PDF was incorrect.
BugSPIREPDF-6301Fixes the issue that the order of extracted table content was incorrect.
BugSPIREPDF-6305Fixes the issue that the text style changed after converting PDF to images.
BugSPIREPDF-6308Fixes the issue that documents could still be decrypted without entering a password.
BugSPIREPDF-6309Fixes the issue that the program threw an exception "System.NullReferenceException" when comparing and saving PDF
BugSPIREPDF-6312Fixes the issue that some content was unclear when printing PDF.
BugSPIREPDF-6314Fixes the issue that the program threw an exception "System.ArgumentOutOfRangeException" when converting PDF to SVG.
BugSPIREPDF-6333Fixes the issue that the program threw an exception "System.StackOverflowException" when converting PDF to images.
BugSPIREPDF-6346Fixes the issue that the program threw an exception "System.NullReferenceException" when extracting text.
BugSPIREPDF-6348Fixed an issue that tables were not recognized.
Spire.XLS
CategoryIDDescription
BugSPIREXLS-4876Fixed the issue that some cells were missing when convert Excel to HTML.
BugSPIREXLS-4880Fixed the issue that the font directory did not take effective when converting Excel to PDF.
BugSPIREXLS-4904Fixed the issue that the function SHEET(A3) did not auto calculate.
BugSPIREXLS-4922Fixed the problem that the encryption information obtained from a worksheet was incorrect.
BugSPIREXLS-4925Fixed the issue that the watermark was incorrect after copying a worksheet.
BugSPIREXLS-4931Fixed the issue that the pagination was incorrect when converting Excel to PDF.
BugSPIREXLS-4933Fixed the issue that the System.FormatException exception was thrown when loading an Excel document.
BugSPIREXLS-4942Fixed the issue that the parentheses were not recognized when converting Excel to images
BugSPIREXLS-4963Fixed the issue that some content got lost when copying a custom shape created by Excel 365 to another worksheet.
Spire.Presentation
CategoryIDDescription
New featureSPIREPPT-2378Supports preserving position information of shapes relative to slides when converting shapes to SVG.
byte[] svgByte = shape.SaveAsSvgInSlide();
FileStream fs = new FileStream("shapePath_" + num + ".svg", FileMode.Create);
fs.Write(svgByte, 0, svgByte.Length);
fs.Close();
New featureSPIREPPT-2379Supports obtaining the height and width of a text area within a shape.
IAutoShape autoShape = shape as IAutoShape;
SizeF size = autoShape.TextFrame.GetTextSize();
New featureSPIREPPT-2384Supports retrieving text from different lines within a shape.
Presentation ppt = new Presentation();
ppt.LoadFromFile(inputFile);
ISlide slide = ppt.Slides[0];
for (int i = 0; i < slide.Shapes.Count; i++)
{
    IAutoShape shape = (IAutoShape)slide.Shapes[i];
    File.AppendAllText(outputFile, "shape" + i + ":" + "\r\n");
    IList<LineText> lines = shape.TextFrame.GetLayoutLines();
    for (int j = 0; j < lines.Count; j++)
    {
        File.AppendAllText(outputFile,"line[" + j + "]:" + lines[j].Text + "\r\n");
    }
}
New featureSPIREPPT-2390Supports retrieving the ShapeID property of an OleObject object.
Presentation ppt = new Presentation();
ppt.LoadFromFile(inputFile);
OleObjectCollection oles = ppt.Slides[0].OleObjects;
OleObject oleObject = oles[0];
StringBuilder sb = new StringBuilder();
sb.AppendLine("ShapeID=" + oleObject.ShapeID);
foreach (DictionaryEntry entry in oleObject.Properties)
{
    sb.AppendLine(entry.Key + ":" + entry.Value);
}
File.AppendAllText(outputFile, sb.ToString());
BugSPIREPPT-2391Fixes the issue that the program threw System.InvalidCastException when executing shape.TextFrame.GetTextLocation() method.

这篇关于Spire.Office 8.11.2 for NET fix Crack的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/439521

相关文章

Python实现Microsoft Office自动化的几种方式及对比详解

《Python实现MicrosoftOffice自动化的几种方式及对比详解》办公自动化是指利用现代化设备和技术,代替办公人员的部分手动或重复性业务活动,优质而高效地处理办公事务,实现对信息的高效利用... 目录一、基于COM接口的自动化(pywin32)二、独立文件操作库1. Word处理(python-d

基于.NET编写工具类解决JSON乱码问题

《基于.NET编写工具类解决JSON乱码问题》在开发过程中,我们经常会遇到JSON数据处理的问题,尤其是在数据传输和解析过程中,很容易出现编码错误导致的乱码问题,下面我们就来编写一个.NET工具类来解... 目录问题背景核心原理工具类实现使用示例总结在开发过程中,我们经常会遇到jsON数据处理的问题,尤其是

Node.js net模块的使用示例

《Node.jsnet模块的使用示例》本文主要介绍了Node.jsnet模块的使用示例,net模块支持TCP通信,处理TCP连接和数据传输,具有一定的参考价值,感兴趣的可以了解一下... 目录简介引入 net 模块核心概念TCP (传输控制协议)Socket服务器TCP 服务器创建基本服务器服务器配置选项服

Python自动化Office文档处理全攻略

《Python自动化Office文档处理全攻略》在日常办公中,处理Word、Excel和PDF等Office文档是再常见不过的任务,手动操作这些文档不仅耗时耗力,还容易出错,幸运的是,Python提供... 目录一、自动化处理Word文档1. 安装python-docx库2. 读取Word文档内容3. 修改

.NET利用C#字节流动态操作Excel文件

《.NET利用C#字节流动态操作Excel文件》在.NET开发中,通过字节流动态操作Excel文件提供了一种高效且灵活的方式处理数据,本文将演示如何在.NET平台使用C#通过字节流创建,读取,编辑及保... 目录用C#创建并保存Excel工作簿为字节流用C#通过字节流直接读取Excel文件数据用C#通过字节

poj 1258 Agri-Net(最小生成树模板代码)

感觉用这题来当模板更适合。 题意就是给你邻接矩阵求最小生成树啦。~ prim代码:效率很高。172k...0ms。 #include<stdio.h>#include<algorithm>using namespace std;const int MaxN = 101;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int n

如何在Visual Studio中调试.NET源码

今天偶然在看别人代码时,发现在他的代码里使用了Any判断List<T>是否为空。 我一般的做法是先判断是否为null,再判断Count。 看了一下Count的源码如下: 1 [__DynamicallyInvokable]2 public int Count3 {4 [__DynamicallyInvokable]5 get

2、PF-Net点云补全

2、PF-Net 点云补全 PF-Net论文链接:PF-Net PF-Net (Point Fractal Network for 3D Point Cloud Completion)是一种专门为三维点云补全设计的深度学习模型。点云补全实际上和图片补全是一个逻辑,都是采用GAN模型的思想来进行补全,在图片补全中,将部分像素点删除并且标记,然后卷积特征提取预测、判别器判别,来训练模型,生成的像

解决Office Word不能切换中文输入

我们在使用WORD的时可能会经常碰到WORD中无法输入中文的情况。因为,虽然我们安装了搜狗输入法,但是到我们在WORD中使用搜狗的输入法的切换中英文的按键的时候会发现根本没有效果,无法将输入法切换成中文的。下面我就介绍一下如何在WORD中把搜狗输入法切换到中文。

.NET 自定义过滤器 - ActionFilterAttribute

这个代码片段定义了一个自定义的 ASP.NET Core 过滤器(GuardModelStateAttribute),用于在控制器动作执行之前验证模型状态(ModelState)。如果模型状态无效,则构造一个 ProblemDetails 对象来描述错误,并返回一个 BadRequest 响应。 代码片段: /// <summary>/// 验证 ModelState 是否有效/// </