在 PHP SDK 中编辑 Word 或 PDF 文件

使用 REST API 以编程方式编辑 PHP 中的文件

当开发人员使用给定的 PHP 解决方案修改文档时,实际编辑的是文档对象模型 (DOM)。因此,几乎可以对表示为 DOM 的文档进行任何更改。使用提供的 PHP SDK,开发人员可以轻松地编辑文档:修改文本、更新表格、添加图像等。只需以支持的加载格式加载您的 Word、PDF 或文件,以编程方式进行必要的更改并将结果导出为支持的保存格式。

查看代码片段

使用 REST API 在 PHP 中编辑文档

我们的 PHP 库使开发人员能够通过编辑文档对象模型 (DOM) 直接修改文档,这意味着无需安装其他软件。

重要的是要知道,使用这个 PHP 解决方案,您可以编辑任何受支持格式的文档。例如,可以加载 PDF、DOCX、DOC、RTF、ODT、EPUB、HTML 等格式的文件,然后修改此文件并以相同格式或任何其他支持的格式保存。

在 PHP 中编辑文本

编辑 Word、PDF 或任何其他文档的最流行案例是文本编辑。使用给定的软件解决方案,您可以使用 PHP 在文档中添加、修改或删除文本。

在 PHP 中编辑表

另一个流行的文档编辑选项是表格编辑。我们的 PHP SDK 允许您在表格单元格中处理表格和文本。

PHP 开发人员可以添加或删除表格和表格单元格,以及在其中添加、编辑和删除文本。

使用 PHP 将图像添加到文档

除了编辑文本和表格之外,还有另一个常见的选项:在 PHP 中将图像添加到文档中。 PHP 开发人员还可以使用 DOM 将图像添加到文件中。

在线编辑文档

试试这个强大的 PHP SDK 并评估文档编辑中的一些选项。使用以下示例,加载您的文档并进行一些更改:添加文本、添加表格和带有文本的表格单元格或在文档中插入图像:

上传要修改的文档
运行代码
上传要插入的图片
从列表中选择目标格式
use Aspose\Words\WordsApi;

$wordsApi = new WordsApi('####-####-####-####-####', '##################');

$requestDocument = "Input.docx";
$requestParagraph = new ParagraphInsert(array(
    "text" => "Morbi enim nunc faucibus a.",
));
$insertParagraphRequest = new InsertParagraphOnlineRequest(
    $requestDocument, $requestParagraph, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
);
$insertParagraph = $wordsApi->insertParagraphOnline($insertParagraphRequest);

$convertRequest = new ConvertDocumentRequest(
    array_key_first($insertParagraph->document()->values()), "docx", NULL, NULL, NULL, NULL
);
$convert = $wordsApi->convertDocument($convertRequest);
use Aspose\Words\WordsApi;

$wordsApi = new WordsApi('####-####-####-####-####', '##################');

$requestDocument = "Input.docx";
$requestTable = new TableInsert(array(
    "columns_count" => 1,
    "rows_count" => 2,
));
$insertTableRequest = new InsertTableOnlineRequest(
    $requestDocument, $requestTable, "", NULL, NULL, NULL, NULL, NULL, NULL
);
$insertTable = $wordsApi->insertTableOnline($insertTableRequest);

$convertRequest = new ConvertDocumentRequest(
    array_key_first($insertTable->document()->values()), "docx", NULL, NULL, NULL, NULL
);
$convert = $wordsApi->convertDocument($convertRequest);
use Aspose\Words\WordsApi;

$wordsApi = new WordsApi('####-####-####-####-####', '##################');

$requestDocument = "Input1.docx";
$requestDrawingObject = new DrawingObjectInsert(array(
    "height" => 0,
    "left" => 0,
    "top" => 0,
    "width" => 0,
    "relative_horizontal_position" => "Margin",
    "relative_vertical_position" => "Margin",
    "wrap_type" => "Inline",
));
$requestImageFile = "Input2.docx";
$insertDrawingObjectRequest = new InsertDrawingObjectOnlineRequest(
    $requestDocument, $requestDrawingObject, $requestImageFile, "sections/0", NULL, 
	   NULL, NULL, NULL, NULL, NULL
);
$insertDrawingObject = $wordsApi->insertDrawingObjectOnline($insertDrawingObjectRequest);

$convertRequest = new ConvertDocumentRequest(
    array_key_first($insertDrawingObject->document()->values()), "docx", NULL, NULL, NULL, NULL
);
$convert = $wordsApi->convertDocument($convertRequest);
运行代码
  
将代码PHP复制到剪贴板

如何在 PHP 中编辑文件

  1. 为 PHP 安装"Aspose.Words Cloud"
  2. 将库引用(导入库)添加到您的 PHP 项目
  3. 在 PHP 中加载要编辑的文档
  4. 在文档开头插入内容
  5. 从云存储下载结果文档

PHP 库使用文档编辑

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。

系统要求

PHP 7.1 或更新版本

请参阅 Repository Documentation 以查看更多详细信息。

5%

订阅 Aspose 产品更新

获取直接发送到您的邮箱的每月通讯和优惠。

© Aspose Pty Ltd 2001-2024. 版权所有。