Remove deprecated function flattenImages

flattenImages in imagick is deprecated since php 5.6.
`PHP Deprecated:  Imagick::flattenImages method is deprecated and it's use should be avoided `

Proposed solution works with imagick 3.1.0+.
11 is used as an alternative to `Imagick::ALPHACHANNEL_REMOVE` which was added in imagick 3.2.0.
pull/5754/head
fliespl 8 years ago committed by Aleksander Machniak
parent a1e23a8967
commit 537aaa3d09

@ -166,7 +166,10 @@ class rcube_image
else {
try {
$image = new Imagick($this->image_file);
$image = $image->flattenImages();
$image->setImageBackgroundColor('white');
$image->setImageAlphaChannel(11);
$image->mergeImageLayers(Imagick::LAYERMETHOD_FLATTEN);
$image->setImageColorspace(Imagick::COLORSPACE_SRGB);
$image->setImageCompressionQuality(75);

Loading…
Cancel
Save