Gregwar / Image

A PHP library to handle images
MIT License
1k stars 191 forks source link

preserve transparency #158

Open devozanges opened 5 years ago

devozanges commented 5 years ago

I've just been looking everywhere for ways to keep the transparent background of my PNGs, maybe adding a line in the doc could be useful for others, in the meantime, you have to do it like that:

$transparent = true;
Image::open($imageSourcePath)
             ->zoomCrop($width, $height, $transparent ? 'transparent' : $hexaColor, 'center', 'center')
             ->save($imageTargetPath, $extension, 85)
        ;