imagecache
imagecache copied to clipboard
Caching extension for the Intervention Image Class
Hi, I added what I believe is a simple yet very helpful trick. But I obviously may not see the entire picture. That would fully resolve issues like this one:...
This cache package seems very geared towards storing and returning the actual data stored for the image. The problem is when it comes to filesystem, you really don't want to...
Hello Is it possible to get the height from a cached image object in the way it's described here? http://image.intervention.io/api/height This is the code we're using in Laravel 5.1 to...
I already have group in route like this  and how to config imagecache to work in this group?
I'm trying to convert a jpg file into a png and then encode the image into a png formatted data url. ``` $img = Image::make($feed->data[$i]->images->low_resolution->url); $img->greyscale(); $img->contrast(7); $img->gamma(2); $img->limitColors(12, '#ff9900');...
This adds a `.gitattributes` file to exclude tests and other unnecessary files from production releases.
Hi. When i'm trying to use Image::cache() i get "Serialization of 'GdImage' is not allowed" error. Any plans for update? Thank you for this extraordinary package!
Hi, We are getting this error on PHP8.1 ``` PHP message: PHP Deprecated: Opis\Closure\SerializableClosure implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if...
Hi, If I fetch data from a URL using Request::get() and then pass it to the cache, caching won't work in that case? It's not working for me. Eg: ```php...