輕鬆合併 PDF 文檔並將結果導出為 PHP 代碼中的 JPG 圖形格式。這個 PHP 庫旨在使用 REST API 將多個 PDF 文件組合成單個 JPG 圖像,即通過 Internet 傳遞 HTTPS 調用。
這是一個專業的雲原生 PDF 到 JPG 合併解決方案,為 PHP 程序員提供了極大的開發靈活性和強大的功能。通過合併文檔,您可以自動化您的數字 PDF/JPG 工作流程,並將流程的一些常規部分卸載到快速高效的 PDF 處理 PHP 軟件。
在許多情況下,您可能需要將 PDF 文件組合成一個 JPG 圖像。例如,您可能希望在打印或歸檔之前將多個 PDF 文件組合在一起。
PDF 合併可以是整個集成文檔處理方法的一部分,用於從不同的數據源生成 JPG 圖像。此類任務涉及使用功能齊全的 PDF/JPG 操作 PHP 庫,該庫將處理一組 PDF 文件並在盡可能短的時間內將它們合併在一起,從而產生緊湊而準確的圖形輸出。
要在 PHP 中執行 PDF 到 JPG 的合併,您至少需要兩個源 PDF 文檔。如需快速入門,請查看下面的 PHP 代碼示例。
use Aspose\Words\WordsApi;
$wordsApi = new WordsApi('####-####-####-####-####', '##################');
$document = "Input1.pdf";
$mergeProps = new DocumentEntry(array(
"file_reference" => FileReference::fromRemoteFilePath("Input2.pdf"),
"import_format_mode" => "KeepSourceFormatting",
));
$documentEntries = [
$mergeProps,
];
$documentList = new DocumentEntryList(array(
"document_entries" => $documentEntries,
));
$appendDocumentOnline = new AppendDocumentOnlineRequest(
$document, $documentList, NULL, NULL, NULL, NULL, NULL, NULL
);
$mergedDocs = $wordsApi->appendDocumentOnline($appendDocumentOnline);
$splitDocumentOnline = new SplitDocumentOnlineRequest(
$mergedDocs, "jpg",
NULL, NULL, NULL, NULL, NULL, NULL, true, NULL
);
$wordsApi->splitDocumentOnline($splitDocumentOnline);
從 Packagist 存儲庫安裝 'Aspose.Words Cloud SDK for PHP' 。只需運行 composer require aspose-cloud/aspose-words-cloud 來安裝 SDK,然後使用 require_once('vendor/autoload.php'); 將其導入您的項目。
作為替代方案,您可以從 GitHub 手動克隆 Aspose.Words Cloud SDK for PHP 源代碼。請按照這些 Instructions 快速獲取必要的安全憑證並訪問我們的 REST API。