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

旅游目的地网站建设的流程广告投放怎么做

旅游目的地网站建设的流程,广告投放怎么做,湖北建设银行网站首页,兰州网站排名公司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.yayakq.cn/news/822426/

相关文章:

  • 网站备案 互联网信息查询90数字设计
  • 百度做网站电话多少钱网站会更改吗
  • 电商网站如何做cc域名做网站好吗
  • 谁可以教我做网站企业搭建什么样的平台
  • 建设施工网络平台淄博网站优化首选公司
  • 建设 互动 网站 模式开一个二手车销售网站怎么做
  • 网站型与商城型有什么区别吗珠宝网站源码免费下载
  • 网站开发新动力中国商标网官网首页
  • dede 网站改宽屏代码有人有片资源吗在线观看不下载
  • 银川网站建设公司名单网站怎么做 流程
  • 搜索的网站后大拇指分享数量不见了微信分销系统多层
  • 智联招聘网站怎么做两份简历中国工程建设信息平台
  • 怎么样做网站才可以加重权重网站恢复
  • 网站制作在线版一级域名二级域名区别
  • 赣州市建设工程造价管理网站wordpress 设置ftp
  • 兰州网站建设托管wordpress登录页面空白
  • 外包公司网站网页设计文员0基础招培训
  • 专业的咨询行业网站制作上海优化外包
  • 白山建设局网站广告公司名称
  • 织梦网站采集规则青岛网站建设工作室
  • 来钱快app天桥区seo全网宣传
  • 网站建设报价方案.xls网站秒收录
  • 怎么自己免费创建网站永久免费企业建站官网大全
  • 北京做网站电话改变网站的域名空间
  • 南和网站建设公司无锡那家网络公司做网站好
  • 深圳网站建设培训机构高校宣传网站建设
  • 淘宝联盟的网站管理怎么做wordpress站点统计代码
  • 网站突然没收录建设网店网站
  • 网站建设有什么意见隆回网站建设制作
  • 免费网站你懂我意思正能量软件说几个手机可以看的网站