Gallery2 - Imagemagick - How to create thumbnails with fixed width while keeping the aspect ratio (variable height)

root's picture

Version 1 - Replace in modules/imagemagick/classes/ImageMagickToolkit.class:

/* Don't enlarge images for a thumbnail */
 	    if ($width > $parameters[0] || $height > $parameters[0]) {
 		$this->_addResizeParam($transform, $parameters[0]);
 		list ($width, $height) =
 		    GalleryUtilities::scaleDimensionsToFit($width, $height, $parameters[0]);
 	    }
with:
/* Create the thumbnail with fixed width */
	    $aspect = $height / $width;
	    $targetWidth = $parameters[0];
	    $height = round($targetWidth * $aspect);
	    $width = $parameters[0];
	    $this->_addResizeParam($transform, $width, $height);

Version 2 - replace in modules/imagemagick/classes/ImageMagickToolkit.class:

/* Don't enlarge images for a thumbnail */
 	    if ($width > $parameters[0] || $height > $parameters[0]) {
 		$this->_addResizeParam($transform, $parameters[0]);
 		list ($width, $height) =
 		    GalleryUtilities::scaleDimensionsToFit($width, $height, $parameters[0]);
 	    }
with:
/* Create the thumbnail with fixed width */
            list ($width, $height) =
                GalleryUtilities::scaleThumbnailToFit($width, $height, $parameters[0]);
            $this->_addResizeParam($transform, $width, $height);
and add to modules/core/classes/GalleryUtilities.class:
function scaleThumbnailToFit($width, $height, $targetWidth, $targetHeight=null) {
 	$aspect = $height / $width;
 	$width = $targetWidth;
 	$height = round($targetWidth * $aspect);
 	return array($width, $height);
     }

Thou shalt not steal!

If you want to use this information on your own website, please remember: by doing copy/paste entirely it is always stealing and you should be ashamed of yourself! Have at least the decency to create your own text and comments and run the commands on your own servers and provide your output, not what I did!

Or at least link back to this website.

Recent content

root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root
root