function animgif_support_is_gif in Animated gif support for image styles 7
Helper function to check the image type is gif or not.
1 call to animgif_support_is_gif()
- animgif_support_do_effect in ./
animgif_support.module - Effect callback common function for overridden effects.
File
- ./
animgif_support.module, line 383 - Provides animated gif resizing support for the image styles.
Code
function animgif_support_is_gif($info) {
if ($info['mime_type'] == 'image/gif') {
return TRUE;
}
if ($info['extension'] == 'gif') {
return TRUE;
}
return FALSE;
}