赞
踩
Aspose.Slides是一款用于生成,管理和转换PowerPoint幻灯片的本机API,可以使用多种格式,而不需要Microsoft PowerPoint。并且可在任何平台上操作PowerPoint演示文稿。
Aspose.Slides for .NET是一款.NET PowerPoint管理API,用于读取,编写,操作和转换PowerPoint幻灯片的独立API,可将PowerPoint转换为PDF,PDF/A,XPS,TIFF,HTML,ODP和其他PowerPoint格式。
Aspose.Slides 最新下载(qun:761297826)https://www.evget.com/product/566/download
Aspose API支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。
系统要求
Aspose.Slides for .net 支持任何运行32 位或 64 位操作系统,包括但不限于:
支持的操作系统 | 开发环境 | 支持的框架 |
|
|
|
支持的文档格式
下表显示了 Aspose.Slides for .net 支持的输入和输出文件格式:
Format | 描述 | Load | Save |
---|---|---|---|
PPT | PowerPoint 演示文稿 97 - 2003 | ||
POT | PowerPoint 模板 97 - 2003 | ||
PPS | PowerPoint 幻灯片 97 - 2003 | ||
PPTX | PowerPoint 演示文稿 2007 - 2019 | ||
POTX | PowerPoint 模板 2007 - 2019 | ||
PPSX | PowerPoint 幻灯片 2007 - 2019 | ||
PPTM | PowerPoint 演示文稿 2007 - 2019 | ||
PPSM | PowerPoint 幻灯片 2007 - 2019 | ||
POTM | PowerPoint 模板 2007 - 2019 | ||
ODP | OpenDocument 演示文稿 | ||
OTP | OpenDocument 演示模板 | ||
TIFF | 将文档另存为单页或多页 TIFF 图像 | ||
EMF | 增强的图元文件格式加上扩展 | ||
便携式文档格式 | |||
XPS | XPS 文件 | ||
JPEG | 以 JPEG 格式保存文档 | ||
PNG | 以 PNG 格式保存文件 | ||
GIF | 以 GIF 格式保存文档 | ||
BMP | 以 BMP 格式保存文档 | ||
SVG | 可缩放矢量图形(一种基于 XML 的矢量图像格式) | ||
SWF | 小型网络格式 | ||
HTML | HTML 格式 | ||
XAML | XAML格式 |
许可和订阅
免费试用或临时许可证
您可以从慧都官网下载Aspose.Slides for NET的评估版。评估版提供与产品许可版相同的功能。评估包与购买包相同。在您向其中添加几行代码(以应用许可证)后,评估版就会获得许可。
一旦您对Aspose.Slides的评估感到满意,您就可以购买许可证。我们建议您浏览不同的订阅类型。如有疑问,请联系 Aspose 销售团队。
每个 Aspose 许可证都附带一年的订阅,可以免费升级到订阅期内发布的新版本或修复程序。拥有许可产品甚至评估版的用户可以获得免费和无限制的技术支持。
Aspose.Slides 中的许可
申请许可证
File
设置许可证最简单的方法是将许可证文件放在包含组件 DLL(包含在 Aspose.Slides 中)的同一文件夹中,并仅指定文件名而不指定其路径。
此 C# 代码向您展示了如何设置许可证文件:
// Instantiates the License class Aspose.Slides.License license = new Aspose.Slides.License(); // Sets the license file path license.SetLicense("Aspose.Slides.lic");
如果将许可文件放在不同的目录下,调用SetLicense方法时,指定explicit结尾的许可文件名必须与你的许可文件名相同。
例如,您可以将许可文件名更改为Aspose.Slides.lic.xml。然后,在您的代码中,您必须将文件路径(以Aspose.Slides.lic.xml结尾)传递给SetLicense方法。
Stream
您可以从流中加载许可证。此 C# 代码向您展示了如何从流中应用许可证:
// Instantiates the License class Aspose.Slides.License license = new Aspose.Slides.License(); // Sets the license through a stream license.SetLicense(myStream);
嵌入式资源
您可以通过将许可证作为嵌入式资源添加到调用组件 DLL(包含在 Aspose.Slides 中)的程序集中,将许可证与您的应用程序打包(以避免丢失)。
这是将许可证文件添加为嵌入式资源的方式:
该类License自动在嵌入式资源中查找许可证文件。您不需要在 Microsoft .NET Framework 中调用类的GetExecutingAssembly和GetManifestResourceStream方法。System.Reflection.Assembly
此 C# 代码向您展示了如何将许可证设置为嵌入式资源:
// Instantiates the License class Aspose.Slides.License license = new Aspose.Slides.License(); // Passes the license file name embedded in the assembly license.SetLicense("Aspose.Slides.lic"); }
验证许可证
要检查许可证是否已正确设置,您可以对其进行验证。此 C# 代码向您展示了如何验证许可证:
Aspose.Slides.License license = new Aspose.Slides.License(); license.SetLicense("Aspose.Slides.lic"); if (license.IsLicensed()) { Console.WriteLine("License is good!"); Console.Read(); }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。