使用 Cells Cloud SDK for C# 将 NUMBERS 转换为 PNG
API
PUT
https://api.aspose.cloud/v3.0/cells/convert
将文件格式从 NUMBERS 转换为 PNG 可能是一项复杂的任务。我们的 C# SDK 可以处理所有 NUMBERS 到 PNG 的格式转换,同时保留源 NUMBERS 电子表格的主要结构和逻辑内容。我们的 C# 库提供了在线将 NUMBERS 转换为 PNG 文件的专业解决方案。该Cloud SDK为C#开发者提供了强大的功能,并保证了PNG的高质量输出。
C# 使用 Cells Cloud SDK 将 NUMBERS 转换为 PNG 的代码示例
// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/
string name = "Book1.numbers";
string format = "png";
string password = null;
string outPath = null;
string storageName = null;
string destFile = "Book1.png";
CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("ProductClientId"), Environment.GetEnvironmentVariable("ProductClientSecret"));
using (Stream stream = cellsApi.CellsWorkbookPutConvertWorkbook(File.OpenRead(name), format, password, outPath, storageName))
{
using (Stream outStream = File.OpenWrite(destFile))
{
stream.CopyTo(outStream);
}
}
如何使用 Cells Cloud Net 库将 NUMBERS 转换为 PNG。
- 注册一个帐户仪表板获取免费API配额和授权详细信息
- 安装 C# 库并将引用(导入库)添加到您的项目中。
- 打开C#中的源文件
- 使用 `PutConvertWorkbook` 方法检索结果流。
系统要求
- NET Framework 4.5.2 或更高版本
- 网络标准 2.0 或更高版本