PHP code example of tpmanc / yii2-imagick
1. Go to this page and download the library: Download tpmanc/yii2-imagick library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once ('vendor/autoload.php' );
tpmanc / yii2-imagick example snippets
$img = Imagick::open('./image.jpg' );
$img->getWidth();
$img->getHeight();
Imagick::open('./image.jpg' )->resize(400 , 300 )->saveTo('./resized.jpg' );
Imagick::open('./image.jpg' )->resize(400 , false )->saveTo('./resized.jpg' );
Imagick::open('./image.jpg' )->thumb(200 , 200 )->saveTo('./thumb.jpg' );
$width = 5 ;
$color = '#000'
Imagick::open('./image.jpg' )->border($width, $color)->saveTo('./result.jpg' );
$width = 10 ;
$color = '#A91AD4'
Imagick::open('./image.jpg' )->border($width, $color)->saveTo('./result.jpg' );
Imagick::open('./image.jpg' )->flip()->saveTo('./result.jpg' );
Imagick::open('./image.jpg' )->flop()->saveTo('./result.jpg' );
$xStart = 0 ;
$yStart = 0 ;
$xEnd = 150 ;
$yEnd = 150 ;
Imagick::open('./image.jpg' )->crop($xStart, $yStart, $xEnd, $yEnd)->saveTo('./result.jpg' );
$radius = 8 ;
$delta = 5 ;
Imagick::open('./image.jpg' )->blur($radius, $delta)->saveTo('./result.jpg' );
$xPosition = 'left' ;
$yPosition = 'top' ;
Imagick::open('./image.jpg' )->watermark('./watermark.png' ), $xPosition, $yPosition)->saveTo('./result.jpg' );
$xPosition = 'right' ;
$yPosition = 'center' ;
Imagick::open('./image.jpg' )->watermark('./watermark.png' ), $xPosition, $yPosition)->saveTo('./result.jpg' );
$xPosition = 'center' ;
$yPosition = 'center' ;
$xSize = '100%' ;
$ySize = 'auto' ;
Imagick::open('./image.jpg' )->watermark('./watermark.png' ), $xPosition, $yPosition, $xSize, $ySize)->saveTo('./result.jpg' );
$xPosition = 'center' ;
$yPosition = 'center' ;
$xSize = '100%' ;
$ySize = '100%' ;
Imagick::open('./image.jpg' )->watermark('./watermark.png' ), $xPosition, $yPosition, $xSize, $ySize)->saveTo('./result.jpg' );
$xPosition = 'right' ;
$yPosition = 'bottom' ;
$xSize = false ;
$ySize = false ;
$xOffset = 50 ;
$yOffset = 50 ;
Imagick::open('./image.jpg' )->watermark('./watermark.png' ), $xPosition, $yPosition, $xSize, $ySize, $xOffset, $yOffset)->saveTo('./result.jpg' );