Skip to main content
Topic: Spuds image cache (Read 2008 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Spuds image cache

https://github.com/Spuds/Elk_Image_Cache_v10


This addon is wonderful!  Thanks for your work @Spuds‍ !


I do have a couple of questions.  One is it breaks photos from PB.  Apparently so does PB, so there's that.  Is here any way to fix that?  Second, it seems to hate animated gifs.  Same question applies.   ;D

 

Re: Spuds image cache

Reply #1

I think the gif issue is this line https://github.com/Spuds/Elk_Image_Cache_v10/blob/master/subs/ImageCache.class.php#L243

Code: [Select]
if( pathinfo($this->data, PATHINFO_EXTENSION) === 'gif' )
{
    $extension = 1;
}
elseif ( pathinfo($this->data, PATHINFO_EXTENSION) === 'png' ) {
    $extension = 3;
}
else {
    $extension = 2;
}

Will probably sort it, I think...

Re: Spuds image cache

Reply #2

I'd give that a try as well  :)