The simpler media website CMS
Hi,
I wish to generate all thumbnails with same width for album+image.
I have followed instructions here to generate fixed thumbnails for images and albums:
https://forum.zenphoto.org/discussion/comment/1977460
Image:
printCustomSizedImage(getAnnotatedImageTitle(), 180, 180, 0, 0, 0, 0, 0, "img-fluid img-thumbnail" );
produces all thumbnails with fixed width; height is variable and can be higher than width.
Album
printCustomAlbumThumbImage(getBareAlbumTitle(), 180, 180, 0);
generates thumbnail with max height = specified width and therefore the thunbnail width is not correct (smaller). Is there a way to fix this ?
Thanks!
Comments
Try
Oh, and
should be
Thank you, it solved my problem! Cheers @fretzl !