Imagecow Versions Save

PHP library to manipulate and generate responsive images

v2.1.3

8 years ago

Fixed Image::rotate() in Gd

v2.1.2

8 years ago

Thanks @eusonlito (#24)

  • Fixed Fatal error: Class 'Imagecow\Libs\BaseImagickPixel' not found
  • Fixed documentation of Image::quality() in the readme.

v2.1.1

8 years ago

Bugfix related with positioning calculation

2.1.0

8 years ago
  • New method: Image::watermark()
  • New method: Image::opacity()
  • Allow to specify position using two values. For example: 50%-10px
  • Make the position keywords more strict. $image->crop(10px, 10px, 'bottom', 'right') is not longer valid. use $image->crop(10, 10, 'right', 'bottom') instead.

Thanks to @eusonlito for his brave work

v2.0.3

8 years ago
  • Fixed animated gif detection when the image is loaded from a file #22 (thanks @aemr3 )

v2.0.2

8 years ago

Fixed animated gif detection when the image is loaded from a string

v2.0.1

8 years ago

Fixed animated gif detection (#21 thanks @eusonlito)

v1.5.1

8 years ago

Fixed animated gif detection

v2.0.0

8 years ago
  • Dropped support for PHP 5.3 and 5.4
  • Dropped image responsiveness using javascript and cookies
  • Dropped $enlarge option in resize and resizeCrop
  • Removed Image::create() factory and renamed Image::createFromFile() and Image::createFromString to Image::fromFile() and Image::fromString().
  • Added support for Client Hints

v1.5.0

8 years ago
  • Improved code of crops (by @eusonlito )
  • Deprecated setCompressionQuality (renamed to quality)
  • Added quality to the available functions called by transform (example: quality,80|format,jpg )
  • Fixed deprecated function in Imagick #20
  • New method Image::base64() to embed the image into the html.