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

相关文章

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 是否有效/// </

MATLAB的fix(),floor()和ceil()函数的区别与联系

fix(x),floor(x)和ceil(x)函数都是对x取整,只不过取整方向不同而已。 这里的方向是以x轴作为横坐标来看的,向右就是朝着正轴方向,向左就是朝着负轴方向。 fix(x):向0取整(也可以理解为向中间取整) floor(x):向左取整 ceil(x):向右取整 举例: 4个数:a=3.3、b=3.7、c=-3.3、d=-3.7 fix(a)=3 fl

.Net Mvc-导出PDF-思路方案

效果图: 导语:     在我们做项目的过程中,经常会遇到一些服务性的需求,感到特别困扰,明明实用的价值不高,但是还是得实现;     因此小客在这里整理一下自己导出PDF的一些思路,供大家参考。     网上有很多导出PDF运用到的插件,大家也可以看看其他插件的使用,学习学习; 提要:     这里我使用的是-iTextSharp,供大家参考参考,借鉴方案,完善思路,补充自己,一起学习

.net MVC 导出Word--思路详解

序言:          一般在项目的开发过程中,总会接收到一个个需求,其中将数据转换成Work来下载,是一个很常见的需求;          那么,我们改如何处理这种需求,并输出实现呢?          在做的过程中,去思考 1、第一步:首先确认,Work的存在位置,并创建字符输出路:             //在的项目中创建一个存储work的文件夹             string

asp.net 中GridView的使用方法

可以看看,学习学习 https://blog.csdn.net/zou15093087438/article/details/79637042

ASP.NET状态管理的总结

由于HTTP协议的无状态特性,导致在ASP.NET编程中,每个请求都会在服务端从头到执行一次管线过程, 对于ASP.NET页面来说,Page对象都会重新创建,所有控件以及内容都会重新生成, 因此,如果希望上一次的页面状态能够在后续页面中保留,则必需引入状态管理功能。   ASP.NET为了实现状态管理功能,提供了8种方法,可帮助我们在页面之间或者整个用户会话期间保留状态数据。 这些方法分为二类: