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.