config/image.php - Not working - URGENT!
In Laravel 8 isn't working config/image.php. It is still using the GD library. I have to use imagick for HEIF images.
But I added this Image::configure(array('driver' => 'imagick')); in function of my Controller and Imagick works!
Do you have some solution? Or why the config isn't works.
Thank you!
I have the same problem! Itried also to overwrite the config file on intervention/image/src/config folder but still not working, intervention still use gd instead imagick.
This is caused because it is hardcoded: https://github.com/Intervention/image/blob/master/src/Intervention/Image/ImageManager.php#L16
Same. Up ?