本快速教程介绍了如何在云中使用 NET REST API将 Word 转换为 TIFF。利用 Aspose.Words for C# Cloud SDK 将 Word 文件导出为 TIFF。给出了使用 C# 低代码 API 开发 **DOC 到 TIFF 转换器的所有步骤和示例代码。
先决条件
- 创建帐户并获取 API 凭据
- 下载 Aspose.Words Cloud SDK for Dotnet
- 使用上述 SDK 设置 C# 项目
使用 C# 低代码 API 将 Word 文件转换为 TIFF 的步骤
- 在配置对象中设置 API 的客户端 ID 和客户端密钥
- 使用指定的配置创建 WordsAPI 类的实例
- 指定输入和输出文件
- 将输入 DOC 文件读取到文件流
- 使用文件流创建 ConvertDocumentRequest 的对象
- 使用 ConvertDocumentRequest 对象调用 ConvertDocument 方法将 DOC 转换为 TIFF
- 将输出的 TIFF 文件保存在本地磁盘上
上述步骤解释了使用 NET REST API* 将文件格式从 *DOC 转换为 TIFF 的过程。通过在配置对象中提供客户端密码和客户端 ID、将源 Word DOC 文件读入内存流并使用内存流和文件格式创建 ConvertDocumentRequest 对象来创建 WordsApi 类对象来开始该过程。最后一步,调用 ConvertDocument() 方法并将返回的流作为 TIFF 文件存储在本地磁盘上。
使用 C# REST API 将 Word 转换为 TIFF 格式的代码
using Aspose.Words.Cloud.Sdk; | |
using Aspose.Words.Cloud.Sdk.Model.Requests; | |
using System; | |
using System.IO; | |
namespace WordsSample.Words | |
{ | |
public class WordsToTiff | |
{ | |
public void ConvertWordToTiffAsync() | |
{ | |
try | |
{ | |
var apiClient = new Configuration(); | |
apiClient.ClientSecret = "Client Secret"; | |
apiClient.ClientId = "Client ID"; | |
//Create SDK object | |
WordsApi wordsApi = new WordsApi(apiClient); | |
//string localPath = @""; | |
string inputFile = "Test1.doc"; | |
string outputFile = "DOCToTIFF"; | |
string outputFormat = "tiff"; | |
//Read input file to bytes array | |
var inpuFileStream = File.Open(inputFile, FileMode.Open); | |
inpuFileStream.Position = 0; | |
ConvertDocumentRequest convertDocumentRequest = | |
new ConvertDocumentRequest(inpuFileStream, outputFormat, null, null, null, null, null, null, null); | |
var conversionTask = wordsApi.ConvertDocument(convertDocumentRequest); | |
conversionTask.Wait(); | |
var outputFileStream = conversionTask.Result; | |
outputFileStream.Position = 0; | |
using (var fileStream = File.Create(outputFile+"."+ outputFormat)) | |
{ | |
outputFileStream.Seek(0, SeekOrigin.Begin); | |
outputFileStream.CopyTo(fileStream); | |
} | |
} | |
catch (Exception e) | |
{ | |
Console.WriteLine(e.Message); | |
} | |
} | |
} | |
} |
上面的示例代码可让您使用 C# 低代码 API 开发Word 到 TIFF 转换器,并且可以在任何操作系统(如 macOS、Linux 或 Windows)上的任何无代码或低代码应用程序中使用。您可以在转换之前修改输入文档,例如使用RemoveRange()删除一定范围的文本、使用ReplaceWithText()替换某些文本以及使用InsertWatermark() API调用插入水印。
您还可以通过以下链接查看相关主题:如何使用 NET REST API 将 Word DOC 转换为 Markdown。