Last visit was: Mon Nov 17, 2025 8:51 am

It is currently Mon Nov 17, 2025 8:51 am

Allowing gif thumbnails for the Album mod

thumbs up! View those gifs!


IntegraMOD in the past has not allowed gf thumbnails to be made for the album and its blocks. This was I beleive due to security concerns. However these are very slight and the benefits far outweigh the risk in the eyes of many. So here is the code to enable you to see those thumbs

A
#-----[ OPEN ]------------------------------------------
#
album_thumbnail.php
#
#-----[ FIND ]------------------------------------------
#
if( ($pic_filetype != '.jpg') && ($pic_filetype != '.png') )

#
#-----[ REPLACE WITH ]------------------------------------------
#
if( ($pic_filetype != '.jpg') && ($pic_filetype != '.png') && ($pic_filetype != '.gif'))

#
#-----[ FIND ]------------------------------------------
#
         case '.jpg':
            header('Content-type: image/jpeg');
            header("Content-Disposition: filename=thumb_" . ereg_replace("[^A-Za-z0-9]", "_", $thispic['pic_title']) . $pic_filetype);
            break;

#
#-----[ BEFORE, ADD ]------------------------------------------
#
         case '.gif':

#
#-----[ FIND ]------------------------------------------
#
      case '.jpg':
         $read_function = 'imagecreatefromjpeg';
         break;

#
#-----[ BEFORE, ADD ]------------------------------------------
#
      case '.gif':
         $read_function = 'imagecreatefromgif';
         $pic_filetype = '.jpg';
         break;
Released on: Thu Feb 20, 2014 1:53 pm
from: IntegraMOD
Article type: Tutorial
Viewed: 2919
Rating: 0/5 (0 Ratings)

[ View topic ]

Return to Setup and Management