($image_height - $box_height) ) { if($image_width > $box_width) { $image_style['width'] = $box_height / $image_height * $image_width; $image_style['left'] = ($box_width - $image_style['width']) / 2; } } else { if($image_height > $box_height) { $image_style['height'] = $box_width / $image_width * $image_height; $image_style['top'] = ($box_height - $image_style['height']) / 2; } } $style_string = 'style="'; $style_string .= 'height: ' . $image_style['height'] . 'px;'; $style_string .= ' width: ' . $image_style['width'] . 'px;'; $style_string .= ' left: ' . $image_style['left'] . 'px;'; $style_string .= 'top: ' . $image_style['top'] . 'px;'; $style_string .= '"'; return $style_string; }