Hello,
The constants.php file specifies especially the values of the following generated images :
define('SOCIAL_PHOTOS_THUMB_WIDTH', 256);
define('SOCIAL_PHOTOS_THUMB_HEIGHT', 256);
define('SOCIAL_PHOTOS_LARGE_WIDTH', 1280);
define('SOCIAL_PHOTOS_LARGE_HEIGHT', 1280);
This means that _ thumbnail.jpg images will have a maximum of 256 pixels in height or width.
And images _large.jpg will have a maximum of 1280 pixels in height or width.
In fact, I found that this rule is respected for _large images (1280 pixels is effectively the maximum value in width or height).
However this rule is not respected for _thumbnail images (we have 256 pixels for width or height, but the other value is always greater than 256 pixels).
For example, in your demo :
http://easysocial.stackideas.com/albums/19-scenery
wallpaper-4_large.jpg : 1280 x 853 pixels
wallpaper-4_thumbnail.jpg :
384 x 256 pixels
This is not consistent, wallpaper-4_thumbnail.jpg should have the following size: 256 x 171 pixels
wallpaper-27_large.jpg : 1280 x 960 pixels
wallpaper-27_thumbnail.jpg:
341 x 256 pixels
wallpaper-27_thumbnail.jpg should rather do: 256 x 192 pixels
Thank you.
Philippe