SimpleImage
SimpleImage copied to clipboard
Imagecropauto feature
Does SimpleImage supports imagecropauto (as called in GD) to remove white (or black, etc) background?
$cropped = imagecropauto($image, IMG_CROP_WHITE);
Not presently, but I'd accept a PR for it.
For croping i am using this function
public function cropImage($cropType=IMG_CROP_DEFAULT) {
$croppedImage = imagecropauto($this->image, $cropType);
if ($croppedImage!== false) {
imagedestroy($this->image);
$this->image = $croppedImage;
}
return $this;
}