2017 © Pedro Peláez
 

library php-imagick

PHP wrapper for command line ImageMagick utils compatible with PECL::Imagick

image

calcinai/php-imagick

PHP wrapper for command line ImageMagick utils compatible with PECL::Imagick

  • Tuesday, December 19, 2017
  • by calcinai
  • Repository
  • 2 Watchers
  • 8 Stars
  • 5,517 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 3 Forks
  • 2 Open issues
  • 4 Versions
  • 59 % Grown

The README.md

php-imagick

PHP wrapper for command line ImageMagick utils compatible with PECL::Imagick, (*1)

This library is a polyfill for the PECL::Imagick. All classes, functions and exceptions should be equivalent to the native ones., (*2)

This is a WIP, since the library is so massive - I'm looking at a way to parse the extension and auto-generate the code., (*3)

Installation

With composer:, (*4)

composer require calcinai/php-imagick

Usage

Currently there is limited functionality, but it's built in a way that supports easy implementation of arguments., (*5)

A basic example:, (*6)

$image = new Imagick('~/sample.png');

$image->cropImage(190, 300, 350, 565);
$image->resizeImage(256, 350, Imagick::FILTER_CATROM, 0);

header("Content-Type: image/png");
echo $image->getImageBlob();

The Versions

19/12 2017

dev-master

9999999-dev

PHP wrapper for command line ImageMagick utils compatible with PECL::Imagick

  Sources   Download

MIT

by Michael Calcinai

22/12 2016

v0.1.2

0.1.2.0

PHP wrapper for command line ImageMagick utils compatible with PECL::Imagick

  Sources   Download

MIT

by Michael Calcinai

28/08 2016

v0.1.1

0.1.1.0

PHP wrapper for command line ImageMagick utils compatible with PECL::Imagick

  Sources   Download

MIT

by Michael Calcinai

28/08 2016

v0.1.0

0.1.0.0

PHP wrapper for command line ImageMagick utils compatible with PECL::Imagick

  Sources   Download

MIT

by Michael Calcinai