Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

ImagickException: Unable to set image alpha channel

$
0
0

Replies: 0

PHP is throwing the following error on PDF upload

ImagickException: Unable to set image alpha channel in /wp-content/plugins/pdf-image-generator/pdf-image-generator.php:384

The solution is to check for an alpha channel before trying to remove it

Change line 380 of pdf-image-generator.php from:

if ( method_exists( 'Imagick','setImageAlphaChannel' ) ) {

to

if ( method_exists( 'Imagick','setImageAlphaChannel' ) && $imagick->getImageAlphaChannel() ) {

Hope this helps!

  • This topic was modified 7 minutes ago by mrdl.

Viewing all articles
Browse latest Browse all 59525

Trending Articles