2 replies
  • WEB DESIGN
  • |
Hello everyone,

Can anyone tell me if there is a plugin that can do a basic thumbnail gallery without the lightbox jquery, exactly as in the web page bellow, appreciate any input. Thanks


Berwald Oriental Art | Chinese Ceramics | A Doucai Box And Cover
#idea #pls
  • Profile picture of the author john13kran
    Use imagemagick on your server!
    It's magick!
    When you upload your photo, make a thumb with the dimensions,quality that you want.

    If imagemagick is installed, you can call it from php with a line like this:


    function imageCrop($original, $renamed, $ThumbnailWidth, $ThumbnailHeight){

    $shellcmd = "convert ".$original." -thumbnail '".$ThumbnailWidth."x".$ThumbnailHeight."^' " ;
    $shellcmd .= ' -colorspace RGB -gravity center -extent '.$ThumbnailWidth."x".$ThumbnailHeight." ".$renamed;


    exec($shellcmd, $output);
    }
    {{ DiscussionBoard.errors[8566443].message }}

Trending Topics