The code in album.php seems to effect only thumbnails. Thumbnails I have worked out. What I need is the slide image resized to fit a specific height and width. So, I tried taking this code from your image.php instead:
`
<div id="fullplate-photo">
<?php printImageDesc(true); ?>
<?php
$cw = $iw = 600;
$ch = 480;
$ih = $nw = $nh = 0;`
`if (getFullWidth() < $iw) { $iw = getFullWidth(); }`
`list($nw, $nh) = getSizeCustomImage(0, $iw, $ih);`
`if ($nh > $ch) {
$iw = 0; $ih = $ch;
list($nw, $nh) = getSizeCustomImage(0, $iw, $ih);
}`
`if (getFullHeight() < $ih) { $ih = getFullHeight(); }
?>
[img]<?php echo getCustomImageURL(0, $nw, $nh); ?>[/img]" width="<?php echo $nw; ?>"
height="<?php echo $nh; ?>" />
</div>`
I replaced your 600 with 610 and 480 with 460 (line 5&6 here) to create the box I need the images to fit in. It almost seems to do what I need, but the landscape oriented images are being cropped/stretched and distorted. Is there something I'm missing? BTW, my images have odd crops, they're all not of a similar aspect ratio... some are really long and skinny, some square. And I tried clearing out the gallery/cache folder, which had no effect.