在这个简单易懂的教程中,您将了解如何在云中使用 Java REST API**将 PDF 转换为 TIFF。为了将 PDF 导出为 TIFF 格式,我们使用 Aspose.PDF for Java Cloud SDK。如果您需要在 Java 低代码 API 中将 PDF 转换为 TIFF,则可以使用以下示例代码和简单步骤来执行此操作。
先决条件
- 创建帐户并获取 API 凭据
- 下载 Aspose.PDF Cloud SDK for Java
- 使用上述SDK设置Java项目
在 Java REST API 中将 PDF 转换为 TIFF 的步骤
- 设置 API 的客户端 ID 和客户端密钥
- 使用客户端凭据创建 pdfApi 类的实例
- 指定输入和输出文件
- 读取输入 PDF 文件并上传到云存储
- 使用输入和输出文件格式创建 pdfApi 的实例
- 调用 putPageConvertToTiff 方法使用 REST API 将 PDF 转换为 TIFF
- 将输出 TIFF 文件保存在本地磁盘上
Java 低代码 API 中的 PDF 到 TIFF 转换代码
String ClientID = Client.getID(); //replace Client.getID() with your own client ID here | |
String ClientSecret = Client.getSecret(); //replace3 Client.getSecret() with your own client secret here | |
try { | |
ApiClient apiClient = new ApiClient(); | |
apiClient.setAppKey(ClientSecret); | |
apiClient.setAppSid(ClientID); | |
PdfApi pdfApi = new PdfApi(apiClient); | |
String inputFile = "PDFtoTIFF.pdf"; | |
String outputFile = "PDFtoTIFF.tiff"; | |
String folder = "Temp"; | |
String format = "TIFF"; | |
// Upload file to cloud storage | |
File file = new File("C:/Temp/" + inputFile); | |
pdfApi.uploadFile(folder + "/" + inputFile, file, null); | |
int pageNumber = 1; | |
pdfApi.putPageConvertToTiff(inputFile, pageNumber, folder + '/' + outputFile, null, null, folder, null, null); | |
// Download output file from Cloud Storage | |
File downloadResponse = pdfApi.downloadFile(folder + "/" + outputFile, null, null); | |
File dest = new File("C:/Temp/" + outputFile); | |
Files.copy(downloadResponse.toPath(), dest.toPath(), java.nio.file.StandardCopyOption.REPLACE_EXISTING); | |
} catch (Exception e) { | |
System.out.println(e.getMessage()); | |
} |
上面显示的代码示例可帮助您使用 Java REST API 将 PDF 转换为 TIFF。您只需借助适用于 Java 的 Aspose.PDF REST API SDK 上传 PDF 文件,并使用 Aspose 在线转换 API 下载输出 TIFF 文件以将其保存在本地。
此 PDF 到 TIFF 转换可用于任何平台上的任何无代码或低代码应用程序。
以下链接显示了可能对您有所帮助的类似功能:如何使用 Java REST API 将 PDF 转换为 XLSX