When i cropped a png image using php gd library it cropped in a strange way. As it is partially cropped. I think the transparency is not working properly.
Here is my code
imagesavealpha($this->image, true); $bg = imagecolorallocatealpha($this->image, 0, 0, 0, 127); imagefill($this->image, 0, 0, $bg); imagepng($this->image,$filename);