Thêm hình mờ văn bản hoặc hình ảnh vào Word tài liệu bằng PHP. Tải Word tài liệu và chèn hình mờ cần thiết vào đó. Sau đó, lưu kết quả ở định dạng thuận tiện như DOCX, PDF, MD, HTML, TXT, DOC, RTF, EPUB, XPS, v.v. và chia sẻ tài liệu đã được đánh dấu mờ với người khác. Đồng thời xóa hình mờ khỏi Word tài liệu nếu hình mờ trước đó đã được thêm vào tài liệu và lý do thêm không còn phù hợp nữa.
Với API PHP này, các nhà phát triển có thể thêm hình mờ vào Word trực tuyến. Chỉ cần tạo hình mờ bằng văn bản hoặc hình ảnh và sau đó chèn hình mờ đó vào Word tài liệu của bạn bằng PHP.
Lưu ý: không cần cài đặt bất kỳ ứng dụng hoặc thư viện nào của bên thứ ba. Do đó, giải pháp phần mềm PHP của chúng tôi rất dễ sử dụng.
SDK PHP đã cho cũng rất hữu ích để xóa hình mờ khỏi Word. Xóa hình mờ trong Word có nghĩa là bạn có thể tải Word tài liệu mong muốn được đóng dấu bằng hình mờ văn bản hoặc hình ảnh, xóa hình mờ này khỏi Word bằng PHP, sau đó lưu tệp đầu ra ở định dạng thuận tiện - DOC, DOCX, PDF, JPEG, PNG, TIFF và những thứ khác.
Để đánh giá cách thêm hoặc xóa hình mờ trong Word bằng API PHP của chúng tôi, hãy tải Word và hình mờ dưới dạng hình ảnh hoặc văn bản. Sau đó chọn định dạng tệp xuất thuận tiện - DOC, DOCX, PDF, HTML, RTF, XPS và các định dạng khác.
Sử dụng ví dụ sau để xem nó hoạt động như thế nào:
use Aspose\Words\WordsApi;
$wordsApi = new WordsApi('####-####-####-####-####', '##################');
$requestDocument = "Input1.docx";
$requestImageFile = "Input2.jpg";
$requestWatermarkData = new WatermarkDataImage(array(
"image" => FileReference::fromLocalFileContent($requestImageFile)
));
$insertWatermarkRequest = new InsertWatermarkOnlineRequest(
$requestDocument, $requestWatermarkData, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
);
$insertWatermarkResult = $wordsApi->insertWatermarkOnline($insertWatermarkRequest);
$convertRequest = new ConvertDocumentRequest(
$insertWatermarkResult->document()->values(), "docx",
NULL, NULL, NULL, NULL, NULL, NULL, NULL
);
$wordsApi->convertDocument($convertRequest);
use Aspose\Words\WordsApi;
$wordsApi = new WordsApi('####-####-####-####-####', '##################');
$requestDocument = "Input.docx";
$requestWatermarkData = new WatermarkDataText(array(
"text" => "This is the watermark text",
"layout" => "Diagonal"
));
$insertWatermarkRequest = new InsertWatermarkOnlineRequest(
$requestDocument, $requestWatermarkData, NULL, NULL, NULL, NULL, NULL, NULL
);
$insertWatermarkResult = $wordsApi->insertWatermarkOnline($insertWatermarkRequest);
$convertRequest = new ConvertDocumentRequest(
$insertWatermarkResult->document()->values(), "docx",
NULL, NULL, NULL, NULL, NULL, NULL, NULL
);
$wordsApi->convertDocument($convertRequest);
use Aspose\Words\WordsApi;
$wordsApi = new WordsApi('####-####-####-####-####', '##################');
$requestDocument = "Input.docx";
$deleteWatermarkOnline = new DeleteWatermarkOnlineRequest(
$requestDocument, NULL, NULL, NULL, NULL, NULL, NULL
);
$deletedWatermark = $wordsApi->deleteWatermarkOnline($deleteWatermarkOnline);
$convertDocument = new ConvertDocumentRequest(
$deletedWatermark->document()->values(), "docx", NULL, NULL, NULL, NULL, NULL, NULL, NULL
);
$wordsApi->convertDocument($convertDocument);
Cài đặt 'Aspose.Words Cloud SDK for PHP' từ kho lưu trữ Packagist. Chỉ cần chạy trình composer require aspose-cloud/aspose-words-cloud để cài đặt SDK, sau đó sử dụng require_once('vendor/autoload.php'); để nhập nó vào dự án của bạn.
Thay vào đó, bạn có thể sao chép thủ công Aspose.Words Cloud SDK for PHP từ GitHub. Vui lòng làm theo các Instructions này để nhanh chóng nhận được thông tin xác thực bảo mật cần thiết và truy cập REST API của chúng tôi.
Bạn có thể thêm hình mờ vào tài liệu ở các định dạng khác: