当前位置: 首页 > news >正文

旅游电子商务网站建设费用百度投广告怎么收费

旅游电子商务网站建设费用,百度投广告怎么收费,crm系统操作流程,手机网站快速建设Spire.Office for .NET对文档的操作包括打开,创建,修改,转换,打印,浏览 Word、Excel、PowerPoint 和 PDF 文档,以及将数据从数据源导出为常用的文档格式,如:Word,Excel&a…

Spire.Office for .NET对文档的操作包括打开,创建,修改,转换,打印,浏览 Word、Excel、PowerPoint® 和 PDF 文档,以及将数据从数据源导出为常用的文档格式,如:Word,Excel,RTF,Access,PowerPoint,PDF,XPS,HTML,XML,Text,CSV,DBF 和剪贴版等格式

 

release of Spire.Office 8.2.2. In this version, Spire.PDF adds TextCompressionOptions to support setting compression type and supports setting the text alignment type for PdfFreeTextAnnotation; Spire.Doc supports the FLOOR.MATH formula and "what if analysis" goal seek; Spire.Presentation enhances the conversion from PowerPoint to images. Besides, a lot of known issues are successfully fixed in this update. More details are listed below. 

Spire.Office for .NET用于创建、编辑、转换和打印 Microsoft Word 文档的Word控件。支持 Word97-2003,Word2007,Word2010 以及 Word2013。能在 Word 97/2003/2007/2010/2013 和 XML、RTF、TXT、XPS、EPUB、EMF、HTML、ODT 等格式文件之间进行双向转换,还能将 Word 文件转换为 PDF 和 SVG 文件格式。其运行系统(服务器端或客户端)均无需安装 Microsoft Word,即可将Microsoft Word文档的操作功能集成到任何开发人员的 .NET 应用程序

Here is a list of changes made in this release
Spire.PDF
CategoryIDDescription
New featureSPIREPDF-5132Supports setting the color space of PdfSeparationColor as RGB.
PdfDocument pdf = new PdfDocument();
 PdfPageBase page = pdf.Pages.Add();
 PdfRGBColor c = Color.Purple;
 
 //color space RGB
 PdfSeparationColorSpace cs = new PdfSeparationColorSpace("MySpotColor", new PdfRGBColor(c.R, c.G, c.B));
 //color space CMYK
 PdfSeparationColorSpace cs = new PdfSeparationColorSpace("MySpotColor", new PdfRGBColor(c.C, c.M, c.Y, c.K));
 //color space Grayscale
 PdfSeparationColorSpace cs = new PdfSeparationColorSpace("MySpotColor", new PdfRGBColor(c.Gray));
 
 PdfSeparationColor color = new PdfSeparationColor(cs, 1f);
 PdfSolidBrush brush = new PdfSolidBrush(color);
 page.Canvas.DrawPie(brush, 10, 30, 60, 60, 360, 360);
 page.Canvas.DrawString("Tint=1.0", new PdfFont(PdfFontFamily.Helvetica, 10f), brush, new PointF(22, 100));
 color = new PdfSeparationColor(cs, 0.5f);
 brush = new PdfSolidBrush(color);
 page.Canvas.DrawPie(brush, 80, 30, 60, 60, 360, 360);
 page.Canvas.DrawString("Tint=0.5", new PdfFont(PdfFontFamily.Helvetica, 10f), brush, new PointF(92, 100));
 color = new PdfSeparationColor(cs, 0.25f);
 brush = new PdfSolidBrush(color);
 page.Canvas.DrawPie(brush, 150, 30, 60, 60, 360, 360);
 page.Canvas.DrawString("Tint=0.25", new PdfFont(PdfFontFamily.Helvetica, 10f), brush, new PointF(162, 100));
 pdf.SaveToFile("SpotColorrgb.pdf");
New featureSPIREPDF-5705Adds TextCompressionOptions to support setting compression type.
PdfCompressor compressor = new PdfCompressor(fileName);
compressor.Options.TextCompressionOptions.UnembedFonts = true;
compressor.CompressToFIle(outputName);
New featureSPIREPDF-5733Supports setting the text alignment type for PdfFreeTextAnnotation.
RectangleF rect = new RectangleF(x, y, 100, 15);
PdfFreeTextAnnotation textAnnotation = new PdfFreeTextAnnotation(rect);
TextAlignment(textAnnotation);
textAnnotation.TextAlignment = PdfAnnotationTextAlignment.Right;
New featureSPIREPDF-5735Supports saving to stream after compressing the PDF file.
using (FileStream fileStream = new FileStream(outputFile, FileMode.Create))
{
    PdfCompressor compressor = new PdfCompressor(inputFile);
    compressor.CompressToStream(fileStream);
    fileStream.Flush();
    fileStream.Close();
}
BugSPIREPDF-5713Fixes the issue that the content was incorrect after printing a PDF file.
BugSPIREPDF-5740Fixes the issue that the content was an offset to the bottom right after printing a PDF file.
BugSPIREPDF-5741Fixes the issue that the checkbox checked value didn't display when opening the output PDF with PDF-XChange.
BugSPIREPDF-5745Fixes the issue that the RadioButton field value lost after flattening the PDF forms.
BugSPIREPDF-5754Fixes the issue that the RadioButton field value was incorrect after flattening the PDF forms.
BugSPIREPDF-5386Optimizes the time consumption when converting PDF to Excel.
BugSPIREPDF-5511Fixes the issue that it failed to display the added text annotation in WPS software.
BugSPIREPDF-5659Fixes the issue that the time consumption of converting two pages with same content to image differs a lot.
BugSPIREPDF-5660Fixes the issue that the invisible lines became visible after converting XPS to PDF.
BugSPIREPDF-5677Fixes the issue that caused incorrect format after extracting text from PDF pages.
BugSPIREPDF-5697Fixes the issue that getting the Destination of bookmark returned incorrect data.
BugSPIREPDF-5726Fixes the issue that the application threw the "ArgumentException" when converting Pdf to image.
Spire.XLS
CategoryIDDescription
New featureSPIREXLS-4405Supports setting the Boolean value of addQuotationForStringValue to make the result strings have quotation marks after converting Excel to CSV.
Workbook workbook = new Workbook();
workbook.LoadFromFile(@"ToCSV.xlsx");
Worksheet sheet = workbook.Worksheets[0];
//The last parameter " true" makes the result strings have quotation marks
sheet.SaveToFile(@"ToCSV.csv", ",",true);
New featureSPIREXLS-4422Supports running "what if analysis" goal seek.
Workbook book = new Workbook();
book.LoadFromFile(inputFile);
Worksheet sheet = book.Worksheets[0];
CellRange targetCell = sheet.Range["E2"];
CellRange gussCell = sheet.Range["B4"];
GoalSeek goalSeek = new GoalSeek();
GoalSeekResult result= goalSeek.TryCalculate (targetCell, 2000, gussCell);
result.Determine();
New featureSPIREXLS-4386Supports the FLOOR.MATH formula.
Workbook workbook = new Workbook();
workbook.Worksheets[0].Range["A1"].Formula = "FLOOR.MATH(12.758,2,-1)";
workbook.CalculateAllValue();
workbook.SaveToFile("result.xlsx");
BugSPIREXLS-3469Fixes the issue that the fonts changed after converting an Excel file to PDF.
BugSPIREXLS-4367Fixes the issue that the values were incorrect after referencing the external data source.
BugSPIREXLS-4402Fixes the issue that the content format was incorrect after converting an Excel file to PDF.
BugSPIREXLS-4403Fixes the issue that the content format was incorrect after converting Excel files to images with netstandard dlls.
BugSPIREXLS-4407Fixes the issue that the Conditional Format range was incorrect after invoking DeleteRange() method.
BugSPIREXLS-4412Fixes the issue that it didn't take effect to set IsTextWrapped for chart data label.
BugSPIREXLS-4420Fixes the issue that the application threw "OutOfMemoryError" when converting an Excel file to PDF.
BugSPIREXLS-4424Fixes the issue that the obtained background color of the cell range was incorrect.
BugSPIREXLS-4413Fixes the issue that it didn't take effect to invoke workbook.IsSaved.
Spire.Presentation
CategoryIDDescription
BugSPIREPPT-2153Fixes the issue that the memory failed to release when the PowerPoint to image conversion program ended.
Spire.Barcode
CategoryIDDescription
BugSPIREBARCODE-235Fixes the issue that the QR code position is incorrect when setting UseHttpHandlerMode="True" in an ASP web application.
http://www.shuangfujiaoyu.com/news/26269.html

相关文章:

  • 住房建设部官方网站女教师遭网课入侵视频大全播放
  • 现在还有用dw做网站百度一下下载安装
  • wordpress建站心得58同城安居客
  • 优秀网站开发关键词优化seo费用
  • 南通网站建设技术支持中国国家培训网是真的吗
  • 勒流网站建设体彩足球竞彩比赛结果韩国比分
  • 客户网站开发全流程图淘宝竞价排名
  • 做图网站大学生兼职seo系统是什么
  • 3000元做网站b2b自动发布信息软件
  • 鹤峰网站制作哈尔滨新闻头条今日新闻
  • 怎样做网站赚钱重庆百度seo
  • 澳门新闻网最新消息今天长沙正规seo优化公司
  • 建设网站需要掌握什么编程语言深圳aso优化
  • 长沙做网站kaodezhu推广普通话手抄报简单又好看内容
  • 太原网站优化培训百度seo优化方法
  • 建设项目水资源论证网站北京网站优化策略
  • 网站开发多少钱一天是岳阳seo
  • 工作纪律生活纪律研讨发言关键词优化好
  • 上海电子商城网站广州网站优化服务
  • 网站做宣传的免费渠道有那种人民日报客户端
  • 格尔木建设局网站百度推广助手
  • 做网站前期ps 图多大seo自学网官网
  • java可以做网站后台吗个人网站设计欣赏
  • 南昌做公司网站中国网站排名网官网
  • 百度怎么做自己网站58网络推广
  • 网站模板建设二级目录网络营销是什么意思?
  • 多国语言网站模板杭州网站推广大全
  • 做网站用什么浏览器最好百度快照没有了用什么代替了
  • 网站开发学那种语言如何快速推广
  • 网站信息安全保障制度建设情况新媒体营销推广方案