Thanks for the explanation. So after the fix I should get what I want simply by using printImageThumb(getAnnotatedImageTitle())? Because with thumbsize set to 100 and not cropped at this moment I get square thumbs of 100x100. That's why for now I use this code to get a temporary fix:
`
if (getFullWidth() === getFullHeight() OR getFullWidth() > getFullHeight()) { printCustomSizedImage(getImageTitle(), null, 150, null);
} else {
printCustomSizedImage(getImageTitle(), null, null , 150);
`
I tried to do the same with the albumthumbs but that did not work and I don't know why:
`
if (getFullWidth() === getFullHeight() OR getFullWidth() > getFullHeight()) { printCustomAlbumThumbImage(getAlbumTitle(), null, 150, null);
} else {
printCustomAlbumThumbImage(getAlbumTitle(), null, null , 150);
`
Will there be an small announcement here on the forum when I fix for this is available?