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.--Ω578867473

破解版请到网上找:Spire.Office for .NET is a combination of Enterprise-Level Office .NET API offered by E-iceblue. It includes Spire.Doc, Spire.XLS, Spire.Spreadsheet, Spire.Presentation, Spire.PDF, Spire.DataExport, Spire.OfficeViewer, Spire.PDFViewer, Spire.DocViewer, Spire.Barcode and Spire.Email. Spire.Office contains the most up-to-date versions of the above .NET API.

Spire.Office for .NET can be linked into any type of a 32-bit or 64-bit .NET application including ASP.NET, Web Services and WinForms for .NET Framework version 2.0 to 4.5. Spire.Office also supports to work on .NET Core, .NET 5.0, .NET 6.0, Microsoft Azure, Mono Android and Xamarin.iOS.

With Spire.Office for .NET, developers can create a wide range of applications. It enables developers to open, create, modify, convert, print, View MS Word, Excel, PowerPoint and PDF documents. Furthermore, it allows users to export data to popular files such as MS Word/Excel/RTF/Access, PowerPoint, PDF, XPS, HTML, XML, Text, CSV, DBF, Clipboard, SYLK, PostScript, PCL, etc.

Here is a list of changes made in this release
Spire.PDF
Category ID Description
New feature SPIREPDF-5095 Supports setting the author and subject for PDFLineAnnotation.
if (annotation is PdfLineAnnotationWidget)
{
    PdfLineAnnotationWidget lineAnn = annotation as PdfLineAnnotationWidget;
    //PdfLineAnnotation lineAnn = annotation as PdfLineAnnotation;
    lineAnn.Author = "Author_test";
    lineAnn.Subject = "Subject_test";
}
New feature SPIREPDF-5148 Supports setting the ForeColor for CheckBox field.
checkboxField.ForeColor = new PdfRGBColor(Color.Red);
New feature SPIREPDF-5154 Adjusts the interface find.ApplyHighLight()to find.HighLight(), and this method improves the highlighting effect.
     
New feature - Supports creating tagged structure PDF.
PdfStringFormat format = new PdfStringFormat();
PdfTrueTypeFont font = new PdfTrueTypeFont(new System.Drawing.Font("Times New Roman", 10));
PdfPen pen = PdfPens.Black;
PdfSolidBrush brush = new PdfSolidBrush(Color.Black);
 
PdfDocument doc = new PdfDocument("HelloWord.pdf");
PdfLogicalStructure tree = PdfLogicalStructure.CreateLogicalStructure(doc);
PdfStructureElement article = tree.AppendChildElement(PdfStandardStructTypes.Article);
article.Title = "create tagged pdf";
 
PdfStructureElement paragraph1 = article.AppendChildElement(PdfStandardStructTypes.Paragraph);
paragraph1.Title = "text paragraph1";
int mcid = 0;
paragraph1.BeginMarkedContentSequence(doc.Pages[0].Canvas, "paragraph1", mcid);
 
doc.Pages[0].Canvas.DrawString("paragraph1: PDF’s logical structure facilities (PDF 1.3) provide a mechanism for " +
    "incorporating structural information about a document’s content into a PDF file. Such information might include, " +
    "for example, the organization of the document into chapters and sections or the identification of special elements " +
    "such as figures, tables, and footnotes. The logical structure facilities are extensible, allowing applications that " +
    "produce PDF files to choose what structural information to include and how to represent it, while enabling PDF " +
    "consumers to navigate a file without knowing the producer’s structural conventions.",
   font, pen, brush, new Rectangle(40, 200, 480, 80), format);
paragraph1.EndMarkedContentSequence(doc.Pages[0].Canvas);
paragraph1.ReferenceContent(doc.Pages[0], mcid);
 
PdfStructureElement paragraph2 = article.AppendChildElement(PdfStandardStructTypes.Paragraph);
paragraph2.Title = "text paragraph2";
mcid = 1;
paragraph2.BeginMarkedContentSequence(doc.Pages[0].Canvas, "paragraph2", mcid);
doc.Pages[0].Canvas.DrawString("paragraph2: PDF logical structure shares basic features with standard document markup languages" +
    " such as HTML, SGML, and XML. A document’s logical structure is expressed as a hierarchy of structure elements, each" +
    " represented by a dictionary object. Like their counterparts in other markup languages, PDF structure elements can" +
    " have content and attributes. In PDF, rendered document content takes over the role occupied by text in HTML, SGML, and XML.",
   font, pen, brush, new Rectangle(40, 280, 480, 60), format);
paragraph2.EndMarkedContentSequence(doc.Pages[0].Canvas);
paragraph2.ReferenceContent(doc.Pages[0], mcid);
 
doc.SaveToFile("Tagged.pdf");
New feature SPIREPDF-5241 Supports loading OFD file from stream
Stream stream = File.OpenRead(inputFile);
OfdConverter converter = new OfdConverter(stream);
MemoryStream ms = new MemoryStream();
converter.ToPdf(ms);
New feature SPIREPDF-5166 Adds an interface that supports print settings in WPF assembly
PdfDocument.Print(PdfPrintSettings printSettings)
Bug SPIREPDF-704 Fixes the issue that the PdfX1A2001 converted from PDF didn't conform to the specification.
Bug SPIREPDF-715 Fixes the issue that the application threw the exception "Object reference not set to an instance of an object." when converting PDF to image.
Bug SPIREPDF-737 Fixes the issue that caused blurred barcode after converting PDF to image.
Bug SPIREPDF-779 Fixes the issue that the content was lost after converting XPS to PDF.
Bug SPIREPDF-1397 Optimizes the time when printing.
Bug SPIREPDF-1443 Fixes the issue that the barcode can't be scanned after printing
Bug SPIREPDF-4884 Fixes the issue that failed to find the cross-line text.
Bug SPIREPDF-5096 Fixes the issue that caused blurry barcode after converting PDF to image.
Bug SPIREPDF-5204 Fixes the issue that caused incorrect barcode after converting PDF to image.
Bug SPIREPDF-5226 Fixes the issue that the application threw the "NullReferenceException" when converting PDF to OFD.
Bug SPIREPDF-5228 Fixes the issue that outputs were incorrect after converting PDF layers to image.
Bug SPIREPDF-5238 Fixes the issue that the page number was lost after printing document.
Bug SPIREPDF-5249 Fixes the issue that when converting PDF to OFD, the invisible content failed to convert.
Bug SPIREPDF-5255 Fixes the issue that the application threw the "NullReferenceException" when merging PDF documents.
Bug SPIREPDF-5264 Fixes the issue that the application threw "ArgumentNullException" when converting PDF to image
Bug SPIREPDF-5273 Fixes the issue that the application threw "IndexOutOfRangeException" when compressing PDF.
Bug SPIREPDF-5285 Fixes the issue that the content was lost after converting PDF to image
Bug SPIREPDF-5039 Fixes the issue that the application threw "can not open an encrypted document, The password is invalid" when loading the stream that was saved from PDF with password .
Bug SPIREPDF-1269 Fixes the issue that caused incorrect field text after printing.
Bug SPIREPDF-1280 Improves the time to convert PDF to image.
Bug SPIREPDF-1603 Fixes the issue that failed to get the value from XFA field.
SPIREPDF-5022
Bug SPIREPDF-4990 Optimizes the memory consumption when manipulating PDF and resultant document size.
Bug SPIREPDF-5018 Fixes the issue that failed to find the text that contains superscripts..
Bug SPIREPDF-5041 Fixes the issue that the application threw the "post table issue" when converting PDF to Images.
Bug SPIREPDF-5057 Fixes the issue that failed to replace image in PDF.
Bug SPIREPDF-5079 Fixes the issue that failed to delete image from PDF.
Bug SPIREPDF-5119 Fixes the issue that caused incorrect format after converting PDF to Image.
Bug SPIREPDF-5142 Fixes the issue that failed to find vertical text in PDF.
Bug SPIREPDF-5148 Supports setting the ForeColor for CheckBox field.
Bug SPIREPDF-5155 Fixes the issue that caused incorrect text spacing after converting OFD to PDF.
Bug SPIREPDF-5165 Fxies the issue that the application threw the "NullReferenceException" when filling image in PdfButton field.
Bug SPIREPDF-5168 Fixes the issue that the PDFViewer failed to load the PDF stream converted from OFD.
Bug SPIREPDF-5171 Synchronizes the cell.getStyle().setCellPadding interface in JAVA (setting the padding of a cell) to .NET.
Bug SPIREPDF-5175 Fixes the issue that characters were incorrect after printing PDF.
Bug SPIREPDF-5177 Fixes the issue that setting the WordWrap for text in grid didn't take effect.
Bug SPIREPDF-5179 Fixes the issue that the size of image stamp became large after converting OFD to PDF.
SPIREPDF-5227
Bug SPIREPDF-5183 Fixes the issue that the application threw "The conversion provider cann't be found" exception when converting HTML to PDF using QT plugin.
Bug SPIREPDF-5184 Fixes the issue that the image was lost after converting SVG to PDF.
Bug SPIREPDF-5199 Fixes the issue that the image stamp was lost after converting OFD to PDF.
Bug SPIREPDF-5207 Fixes the issue that the text overlapped after adding in grid.
Spire.Doc
Category ID Description
New feature - Supports converting table of contents into corresponding bookmarks in PDF when converting Word to PDF using NewEngine.
ToPdfParameterList toPdf = new ToPdfParameterList();
toPdf.CreateWordBookmarks = true;
toPdf.CreateWordBookmarksUsingHeadings = true;
document.setUseNewEngine(true);
document.saveToFile("output.pdf",toPdf);
New feature - Supports disabling hyperlinks in PDF when converting Word to PDF using NewEngine.
ToPdfParameterList toPdf = new ToPdfParameterList();
toPdf.DisableLink = true;
document.setUseNewEngine(true);
document.saveToFile("output.pdf",toPdf);
Bug SPIREDOC-6917 Fixes the issue that the color of table borders lost after converting HTML to Docx.
Bug SPIREDOC-7600 Fixes the issue that there were extra blank lines before the title after converting Word to PDF.
Bug SPIREDOC-7659 Fixes the issue that the table pagination was wrong after converting Word to PDF.
Bug SPIREDOC-7678 Fixes the issue that the application threw "System.FormatException" when converting Word to PDF under French locale settings.
Bug SPIREDOC-7766 Fixes the issue that image links would not work after saving a Docx file.
Bug SPIREDOC-7771 Fixes the issue that waterfall charts would be empty after replacing some paragraph text.
Bug SPIREDOC-7773 Fixes the issue that the application threw "System.ArgumentOutOfRangeException" when loading a Docx file.
Bug SPIREDOC-7790 Fixes the issue that the content format was inconsistent after converting Word to PDF.
Bug SPIREDOC-7824 Fixes the issue that waterfall charts changed to pictures after saving a Docx file.
Bug SPIREDOC-7792 Fixes the issue that the application threw "System.Collections.Generic.KeyNotFoundException" when saving a Docx file.
Spire.XLS
Category ID Description
New feature SPIREXLS-3812 Provides an interface that supports setting whether to apply styles to rows and columns.
worksheet.ApplyStyle(style, applyRowStyle, applyColumnStyle)
New feature - Supports converting new chart types in Excel 2016 like waterfall, treemap and boxandwhisker to PDF and image.
Bug SPIREXLS-3888 Fixes the issue that the content of cells in custom format was not correct after converting to PDF.
Bug SPIREXLS-3890 Fixes the issue that the header whose content contained carriage, its height was incorrect after converting to PDF.
Bug SPIREXLS-3900 Fixes the issue that the association between button and VBA was lost after copying sheet to another workbook.
Bug SPIREXLS-3901 Fixes the issue that the data of pivot table was incorrect after converting Excel to PDF.
Bug SPIREXLS-3908 Fixes the issue that caused blurry effect after inserting image in Excel with new versions.
Bug SPIREXLS-3909 Fixes the issue that failed to get the range of namedrange with non-contiguous ranges.
Spire.Presentation
Category ID Description
Bug SPIREPPT-1963 Fixes the issue that the fill color obtained from a shape was incorrect.
Bug SPIREPPT-1967 Fixes the issue that the application threw exception "ArgumentOutOfRangeException" when HTML was inserted to PowerPoint.
Spire.Spreadsheet
Category ID Description
Bug SPREADSHEET-201 Fixes the issue that adding and deleting rows would give incorrect results.
Bug SPREADSHEET-202 Fixes the issue that "NullReferenceException" occurred when Excel files were being loaded.
Spire.Barcode
Category ID Description
Bug SPIREBARCODE-214 Fixes the issue that the rectangle added in barcode became square.
Bug SPIREBARCODE-215 Fixes the issue that the scanned data was inconsistent with the data scanned by mobile phone.

2022-07-07:Spire.Office 7.7.2 for net 闪亮登场相关推荐

  1. 谷歌浏览器插件开发接口自动打码【2022年07月05日更新一下修改的点】

    谷歌浏览器插件开发接口自动打码 一.字符验证码的训练 二.谷歌浏览器插件的开发 1.谷歌浏览器插件**manifest.json** 2.负责输入请求的bifang.js 3.解决跨域问题的backg ...

  2. 微信被拉黑强制发验证消息(2022/11/07验证有效)(非广告)

    微信被拉黑强制发验证消息(2022/11/07验证有效) 方法很简单,如果保留了聊天记录的话,先发一个红包(必须是红包),金额随意,然后发送之后会提示不是好友对方无法收到,然后在这段话后面有一个 &q ...

  3. C#读写Excel的4种方案(OpenXml、NPOI、EPPlus、Spire.Office)

    在项目中需要使用C#读写Excel,每天定时将数据输出到Excel表格中.在参考了很多的方案后,找到了4个常用的方案,并提供了一些小Demo.更多功能和示例可以参考官方文档. 1.Microsoft. ...

  4. 无需安装Microsoft Office和Adobe实现办公文档操作,Spire.Office免费资源清单一览

    作为一个独立的 Office 组件,Free Spire.Office 的运行环境无需安装 Microsoft Office 及其他第三方软件.基于安全性.稳定性.可扩展性.效率及价格方面的考虑,Sp ...

  5. 2021.07.07 宇信科技

    2021.07.07 宇信科技 宇信科技          晚上电话面 问了一堆java基础,离谱,jd上也没要求java:简历筛选扣工资! java小白,凭借c语言基础简单回答了一哈,面试官估计在电 ...

  6. Spire.Office 7.5.4 发布 ~~ Spire.Office

    Spire.Office for .NET是 E-iceblue 提供的企业级 Office .NET API 的组合.它包括Spire.Doc.Spire.XLS.Spire.Spreadsheet ...

  7. spire.office,Spire.Office 5.3.7组件的最新版本

    spire.office,Spire.Office 5.3.7组件的最新版本 Spire.Office是面向.NET程序员的有用Office组件的集合.该集合包含.NET,wpf和Silverligh ...

  8. Spire.Office NET 7.7.6 重大重量 Spire.Office 7.7.X JAVA

    破解版网上很多:Spire.Office for Java is a combination  of Java Office APIs that contains Spire.Doc for Java ...

  9. Spire.Office 7.8.4 for NET --2022-08-17

    需要破解版的朋友,请搜索谷歌,你会有所发现 Spire.Office 7.8.4 for NET --2022-08-17 A professional Word .NET library desig ...

最新文章

  1. ArcFaceSharp -- ArcFace 2.0 SDK C#封装库分享
  2. 世界-中国-省-市-县 天气预报
  3. wow,My God,当当终于销售《走出软件作坊》了
  4. mac运行linux命令,iOS:mac.app执行shell命令
  5. 浅谈WebView的使用
  6. scrollLeft/scrollTop,offsetLeft/offsetTop,clientLeft/clientTop
  7. 小知识--DOS命令2
  8. python识别文字软件_使用Python和大漠插件进行文字识别含软件源码
  9. 科学计算器 java_用Java编写的标准计算器、科学计算器、时间转换。
  10. 可信计算理论与技术--远程证明技术
  11. 检查型异常有哪些java_JAVA系列之检查型异常与非检查型异常的详解
  12. 电子商务正在形成共同体经济
  13. java csvwriter 追加_CSV文件每行的末尾追加写数据
  14. Vuex Actions使用
  15. 安利一个自动求导网站
  16. rust future async/await
  17. 网络安全进阶篇之免杀(十四章-7)C#加载器过360
  18. IDEA中自动生成类图方法
  19. matlab中datax,菜鸟学飞--matlab系列1
  20. 用js编写一个函数:rev(str),功能是实现字符串倒置:rev(”床前明月光“),返回一个字符串:“光月明前床”...

热门文章

  1. ijkplayer使用 android,【Android】ijkplayer集成使用
  2. 在教学过程中用到的计算机软件,计算机软件在教学中的运用
  3. Scratch3.0连接EV3,WEDO2.0的方法视频讲解。
  4. machine leaning 1
  5. 微信公众平台自带的生成公众号二维码的连接
  6. C/C++经典项目:C++编写彩票号码生成器,附源码
  7. 山东高考六选三学计算机选什么,山东高考改革后第一批六选三的选科数据出来了!物理选课率占39.52%!新政之下文科全面反超理科!...
  8. 空间滤波-统计排序滤波器-修正阿尔法均值滤波器
  9. 校园网b站播放器报错解决
  10. 在30分钟内创建你的深度学习服务器