我有一个现有的图片上传脚本(下面)工作正常,但我想添加一个裁剪功能,所以每个上传的照片都保持正确的宽高比,但裁剪为200 x 200px。 / p>
我已经查看了与此相关的其他问题,但理想情况下我想在我的脚本中添加裁剪,而不是实现一个全新的,如果这是有道理的。
有人可以帮忙吗?
一如既往地谢谢。
mkdir("images/$user_id");
$saveto = "images/$user_id/$user_id.jpg";
move_uploaded_file($_FILES['image']['tmp_name'], $saveto);
$typeok = TRUE;
switch($_FILES['image']['type'])
{
case "image/gif": $src = imagecreatefromgif($saveto); break;
case "image/jpeg": // Both regular and progressive jpegs
case "image/pjpeg": $src = imagecreatefromjpeg($saveto); break;
case "image/png": $src = imagecreatefrompng($saveto); break;
default: $typeok = FALSE; break;
}
if ($typeok)
{
list($w, $h) = getimagesize($saveto);
$max = 200;
$tw = $w;
$th = $h;
if ($w > $h && $max < $w)
{
$th = $max / $w * $h;
$tw = $max;
}
elseif ($h > $w && $max < $h)
{
$tw = $max / $h * $w;
$th = $max;
}
elseif ($max < $w)
{
$tw = $th = $max;
}
$tmp = imagecreatetruecolor($tw, $th);
imagecopyresampled($tmp, $src, 0, 0, 0, 0, $tw, $th, $w, $h);
imageconvolution($tmp, array( // Sharpen image
array(-1, -1, -1),
array(-1, 16, -1),
array(-1, -1, -1)
), 8, 0);
imagejpeg($tmp, $saveto);
imagedestroy($tmp);
imagedestroy($src);
}
编辑:我发现以下脚本在其自己的页面上工作正常,但是在我现有的上传脚本中或之后我无法实现它 - 我得到一些'未能打开流:没有这样的文件或目录的错误 - 但图像的路径是正确的(我已经回应它确定):
$filename = 'images/$user_id/$user_id.jpg';
// Get dimensions of the original image
list($current_width, $current_height) = getimagesize($filename);
// The x and y coordinates on the original image where we
// will begin cropping the image
$left = 25;
$top = 25;
// This will be the final size of the image (e.g. how many pixels
// left and down we will be going)
$crop_width = 200;
$crop_height = 200;
// Resample the image
$canvas = imagecreatetruecolor($crop_width, $crop_height);
$current_image = imagecreatefromjpeg($filename);
imagecopy($canvas, $current_image, 0, 0, $left, $top, $current_width, $current_height);
imagejpeg($canvas, $filename, 100);
有人可以帮我把两者放在一起吗?
由于
答案 0 :(得分:1)
它非常易于使用且效率很高。
调整大小($ width,$ height,$ background):调整图像大小 保持规模,永不放大
scaleResize($ width,$ height,$ background):调整图片大小,将会 保持规模
forceResize($ width,$ height,$ background):调整图片大小 将图像定义为$ width
cropResize($ width,$ height,$ background):调整图像大小 保留比例并裁剪空白
答案 1 :(得分:0)
感谢大家的回复 - 我通过更改
让我的脚本正常工作$filename = 'images/$user_id/$user_id.jpg';
到
$filename = "images/$user_id/$user_id.jpg";