rahilwazir / php-watermark

Add text or image Watermark on image and PDF files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PHPWatermark

SensioLabsInsight Latest Stable Version Build Status Coverage Status Total Downloads License

Add text or image Watermark on image and PDF using PHP and ImageMagick.

Pre-requisite

PHP ImageMagick extension is not required.

Installation

Add as a dependency with composer

$ composer require ajaxray/php-watermark

Or download latest version as a Zip file.

How to use?

 <?php
    // Initiate with source image or pdf
    $watermark = new Watermark('/path/to/source.jpg');
    
    // Customize some options (See list of supported options below)
    $watermark->setFontSize(48)
       ->setRotation(30)
       ->setOpacity(.4);
    
    // Watermark with Text
    $watermark->withText('ajaxray.com', 'path/to/output.jpg');
    
    // Watermark with Image
    $watermark->withImage('path/to/logo.png', 'path/to/output.jpg');

If output file name is skipped for Watermark::withImage() and Watermark::withText() function, the source file will be overridden.

Customization options

The table below shows customization options and their support matrix. Listed functions should be called on an object of Ajaxray\PHPWatermark\Watermark. Checkmark column titles means the following -

  • Txt-Img: Watermarking with text on Image (sample, sample-tiled)
  • Img-Img: Watermarking with Image on Image (sample)
  • Txt-PDF: Watermarking with text on PDF (sample)
  • Img-PDF: Watermarking with Image on PDF (sample)

⌛ = coming soon!

Function Value Txt-Img Img-Img Txt-PDF Img-PDF
setFont('Arial') string; Font Name
setFontSize(36) int; Font size
setOpacity(.4) float; between 0 (opaque) to 1 (transparent)
setRotate(245) int; between 0 to 360
setPosition($position) int; One of Watermark::POSITION_* constants
setOffset(50, 100) int, int; X and Y offset relative to position
setStyle($style) int; One of Watermark::STYLE_* constants
setTiled() boolean; (default true)
setTileSize(200, 150) int, int; Width and Height of each tile

Also, there is Watermark::setDebug() which will make Watermark object to return imagemagick command instead of executing it.

BTW, all the samples linked above are the results of these examples. You may generate them yourself just by running example scripts from command line -

$ php vendor/ajaxray/php-watermark/examples/example_img.php
$ php vendor/ajaxray/php-watermark/examples/example_pdf.php

Then you should get the result files in vendor/ajaxray/php-watermark/examples/img and vendor/ajaxray/php-watermark/examples/pdf directories.

Notes:

  • To see the list of supported font names in your system, run convert -list font on command prompt
  • Remember to set appropriate output file extension (e,g, .pdf for pdf files)
  • If possible, use absolute path for files to avoid various mistakes.
  • STYLE_IMG_* constants are for Image watermarks and Watermark::STYLE_TEXT_* are for text.
  • Default text style (Watermark::STYLE_TEXT_BEVEL) is expected to be visible on any background. Use other text styles only on selective backgrounds.
  • UnitTest are executed and all green against PHP 5.6 and PHP 7.1 using PHPUnit 5.7.5
  • I'v tested all intended functionality with ImageMagick 7.0.4-6 Q16 x86_64 and GPL Ghostscript 9.20 installed.

"This is the Book about which there is no doubt, a guidance for those conscious of Allah" - Al-Quran

About

Add text or image Watermark on image and PDF files

License:MIT License


Languages

Language:PHP 100.0%