【发布时间】:2012-01-23 18:59:47
【问题描述】:
我正在尝试完成这个功能,它似乎工作得很好,除了一个小问题 - 它似乎将图像定位到左侧太远,然后用黑色填充其余空间。
我要做的是让这个函数将图像调整为指定的 $thumb_w,如果调整大小后高度最终大于 $thumb_h,它只会裁剪出底部。
这是我的功能代码:
function resize_upload ($tmp, $thumb_w, $thumb_h, $img_name, $img_ext, $img_path)
{
if ($img_ext == 'jpg' || $img_ext == 'jpeg' || $img_ext == 'png' || $img_ext == 'gif')
{
if ($img_ext == 'jpg' || $img_ext == 'jpeg')
$source_img = imagecreatefromjpeg($tmp);
else if ($img_ext=='png')
$source_img = imagecreatefrompng($tmp);
else
$source_img = imagecreatefromgif($tmp);
$orig_w = imagesx($source_img);
$orig_h = imagesy($source_img);
$w_ratio = ($thumb_w / $orig_w);
$h_ratio = ($thumb_h / $orig_h);
if ($orig_w > $orig_h )
{
$crop_w = round($orig_w * $h_ratio);
$crop_h = $thumb_h;
$src_x = ceil( ( $orig_w - $thumb_w ) / 2 );
$src_y = 0;
}
elseif ($orig_w < $orig_h )
{
$crop_h = round($orig_h * $w_ratio);
$crop_w = $thumb_w;
$src_x = 0;
$src_y = ceil( ( $orig_h - $thumb_h ) / 2 );
}
else
{
$crop_w = $thumb_w;
$crop_h = $thumb_h;
$src_x = 0;
$src_y = 0;
}
$thumb_img = imagecreatetruecolor($thumb_w,$thumb_h);
imagecopyresampled($thumb_img, $source_img, 0 , 0 , $src_x, $src_y, $crop_w, $crop_h, $orig_w, $orig_h);
imagejpeg($thumb_img, $img_path.'/'.$img_name.'.'.$img_ext, 100);
imagedestroy($thumb_img);
imagedestroy($source_img);
}
}
这是我调用函数的方式:
resize_upload ($_FILES['image_main']['tmp_name'], 556, 346, $img_name, $img_ext, '../wp-content/themes/my-theme/images/projects');
这是函数完成其工作后图像最终的样子:
看到右边的黑色了吗?它可能是一些我无法弄清楚的数学问题。任何帮助将不胜感激。
【问题讨论】:
标签: php image image-processing