"There has been an error cropping your image" when cropping image

I am setting the header image in WordPress and when I click on the crop button, it shows me the following error:

There has been an error cropping your image.

Topic header-image cropping images Wordpress

Category Web


I had encountered the same issue with my blog, after searching for a while found out that it was because GD library for PHP which was not installed on the server

Since my server is hosted on CentOS, to find the GD Library package within CentOS repository

$ sudo yum list available | grep 'gd'

Identify GD Library package name and install it

$ sudo yum install php-gd

Restart apache service

$ sudo service httpd restart

A detailed article that I wrote can be found here with command output screenshots


I was facing same issue and unable to understand how to resolve this issue by following given ideas on every portals as I am not hardcore programmer so it was not possible for me to understand their tricks but Now I have successfully troubleshooted this image cropping issue and am sharing my trick how it was troubleshooted.

You just have to open your xampp controller and stop both the services Apache and MySQL and now click on congfig button of Apache and select PHP(PHP.ini), After selecting you will see a config file, find

;extension=gd

text, Now just remove ; to enable gd services at your system for PHP as by default it comes with commented and save the file and restart both services Apache and MySQL.

I hope this will help you.


I solved this installing the next library

sudo apt-get install php5-gd -> for php5

sudo apt-get install php7.0-gd -> for php7

sudo apt-get install php7.2-gd -> for php7.2


There is too little information to be completely sure, but usually this error occurs when WordPress cannot find the graphic library which should be installed on your server. So you should check with your provider to see if Imagick and/or GD are installed.

You can also add this little snippet of code in your functions.php file to make sure WordPress looks for both (often it only looks for Imagick):

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

This snippet will look for GD first and then for Imagick. The latter gives better quality, but uses more memory, which can also lead to server errors.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.