Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hello,

    This piece of code did the trick for me (WP4.5):

    add_filter( 'wp_image_editors', 'change_graphic_lib' );
    
    function change_graphic_lib($array) {
    return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' );
    }

    Add the above mentioned code in the functions.php of your currently active theme. I did place the code right after the “<?php “.

    Hope this helps!

Viewing 1 replies (of 1 total)