I’m downloading an image that already has black edges. Note: this isn’t a result of me resizing an image. How can I use the GD library to detect and remove these black edges?


UPDATE
This is the cropped image using the script

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I was able to come up with a time-consuming fix to this. Do the images being stored need to be stored with those black borders? It’d be much better if you could run every image with the black borders through the following script (using php to loop through every image in the directory) and let php override the old, black-bordered image with the new, borderless image.
The approach I took was to create 4 loops:
Now, each of these loops had another loop in them which would loop through the other coordinate (ie., x->y or y->x). If the inner loop found that one of the pixels lying on the outer loop’s line wasn’t black, it broke the whole look. If it didn’t find that, it would increase one to the counter.
At the end, we simply create a new image with the new dimensions and copy from the new to the old one.