Add a watermark to Word or remove previously added watermarks using PHP

Using this PHP library, stamp Word documents with an image or text watermark or remove an already added watermark in a few steps

Add a text or image watermark to Word documents using PHP. Load the Word document and insert the required watermark into it. Then save the result in a convenient format such as DOCX, PDF, MD, HTML, TXT, DOC, RTF, EPUB, XPS and more, and share the watermarked document with another person. Also remove the watermark from Word document if the watermark was previously added to the document, and the reasons for adding are not longer relevant.

View code snippet

Word – add watermark in PHP

With this PHP API, developers can add a watermark to Word online. Just create the watermark using text or an image and then insert that watermark into your Word document in PHP.

Note: there is no need to install any third party applications or libraries. Therefore, our PHP software solution is very easy to use.

Remove watermark from Word – PHP

The given PHP SDK is also helpful to remove watermarks from Word. Removing a watermark in Word means that you can load the desired Word document stamped with a text or image watermark, remove this watermark from the Word using PHP, and then save the output file in a convenient format – DOC, DOCX, PDF, JPEG, PNG, TIFF and others.

Work with watermark in Word

To evaluate how to add or remove a watermark in Word with our PHP API, load the Word and the watermark as an image or text. Then select a convenient export file format – DOC, DOCX, PDF, HTML, RTF, XPS and others.

Use the following example to see how it works:

File needs to add watermarks
Run code
Upload an image you want insert
Select the target format from the list
use Aspose\Words\WordsApi;

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

$requestDocument = "Input1.docx";
$requestImageFile = "Input2.docx";
$insertWatermarkImageOnline = new InsertWatermarkImageOnlineRequest(
    $requestDocument, $requestImageFile, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
);
$insertedWatermarkImage = $wordsApi->insertWatermarkImageOnline($insertWatermarkImageOnline);

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

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

$requestDocument = "Input.docx";
$requestWatermarkText = new WatermarkText(array(
    "text" => "This is the watermark text.",
    "rotation_angle" => 90,
));
$insertWatermarkTextOnline = new InsertWatermarkTextOnlineRequest(
    $requestDocument, $requestWatermarkText, NULL, NULL, NULL, NULL, NULL, NULL
);
$insertedWatermarkText = $wordsApi->insertWatermarkTextOnline($insertWatermarkTextOnline);

$convertDocument = new ConvertDocumentRequest(
    $insertedWatermarkText->document()->values(), "docx", 
	   NULL, NULL, NULL, NULL, NULL, NULL, NULL
);
$wordsApi->convertDocument($convertDocument);
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);
Run code
  
Copy PHP code to the clipboard

How to remove watermark in Word using PHP

  1. Install Aspose.Words Cloud for PHP
  2. Add a library reference (import the library) to your PHP project
  3. Configure API using your app keys
  4. Load Word document you want to remove the watermark from
  5. Create a request to remove the watermark
  6. Save the result to a convenient file format

PHP library to use watermarks in DOCX

Install 'Aspose.Words Cloud SDK for PHP' from Packagist repository. Just run composer require aspose-cloud/aspose-words-cloud to install the SDK, then use require_once('vendor/autoload.php'); to import it into your project.

As an alternative, you can manually clone Aspose.Words Cloud SDK for PHP source code from GitHub. Please follow these Instructions to quickly get the necessary security credentials and access our REST API.

System Requirements

PHP 7.1 or newer

Refer to the Repository Documentation to see more details.

Other supported file formats

You can add a watermark to a document in other formats:

5%

Subscribe to Aspose Product Updates

Get monthly newsletters and offers directly delivered to your mailbox.

© Aspose Pty Ltd 2001-2024. All Rights Reserved.