Make WordPress Core

Ticket #60798: 60798-2.patch

File 60798-2.patch, 872 bytes (added by antpb, 4 months ago)
  • src/wp-includes/class-wp-image-editor-imagick.php

     
    775775         * @since 6.4.0
    776776         */
    777777        protected function remove_pdf_alpha_channel() {
    778                 $version = Imagick::getVersion();
    779778                // Remove alpha channel if possible to avoid black backgrounds for Ghostscript >= 9.14. RemoveAlphaChannel added in ImageMagick 6.7.5.
    780                 if ( $version['versionNumber'] >= 0x675 ) {
     779                if ( ) {
    781780                        try {
    782781                                // Imagick::ALPHACHANNEL_REMOVE mapped to RemoveAlphaChannel in PHP imagick 3.2.0b2.
    783782                                $this->image->setImageAlphaChannel( defined( 'Imagick::ALPHACHANNEL_REMOVE' ) ? Imagick::ALPHACHANNEL_REMOVE : 12 );