/**
* 按目标比例和尺寸缩小并裁切图片,如果原图尺寸小于目标尺寸,则只按比例裁切
* @param $img_name 原图片名称(不是路径)
* @param $width 目标图片宽度,如果原图宽度不等于目标宽度,则原图按目标比例缩放后再裁切
* @param $width 目标图片高度
*/
function img_convert_do($img_name, $width, $height){
$old_img=FCPATH.'photo/'.$img_name;
$new_img=FCPATH.'photo2/'.$img_name;
$size_arr = @getimagesize($old_img);
if(is_array($size_arr)){
$w = $size_arr[0];
$h= $size_arr[1];
}else{
exit('图片尺寸获取失败:'.$img_name);
}
if($w/$h < $width/$height){
$h=ceil($w*$height/$width);
}else if($w/$h > $width/$height){
$w=ceil($width*$h/$height);
}else{ //比例一致,直接复制
return copy($old_img,$new_img);
}
if($w<$width){
$width=$w;
$height=$h;
}
//新建真彩色图像
$im = imagecreatetruecolor($width, $height);
//为图像分配颜色
//$color = imagecolorallocate($im, 255,255,255);
//从指定坐标开始填充颜色
//imagefill($im, 0,0, $color);
//从字符串的图像流中新建图像,可以自动识别文件类型,但是比 imagecreatefromjpeg 等多消耗内存
$source = imagecreatefromstring(file_get_contents($old_img));
/*
从 x、y 坐标 src_x、src_y 开始,将 src_image 的一部分复制到 dst_image 上,
宽度为 src_width,高度为 src_height。定义的部分将被复制到 x,y 坐标 dst_x 和 dst_y 上。
imagecopy(
GdImage $dst_image,
GdImage $src_image,
int $dst_x,
int $dst_y,
int $src_x,
int $src_y,
int $src_width,
int $src_height
): bool
从 src_image 中取出一个宽度为 src_width 高度为 src_height 的矩形区域,
在位置(src_x、src_y)
并将其放置在 dst_image 中宽度为 dst_width 高度为 dst_height 的矩形区域中,
位置为(dst_x、dst_y)。
imagecopyresampled(
GdImage $dst_image,
GdImage $src_image,
int $dst_x,
int $dst_y,
int $src_x,
int $src_y,
int $dst_width,
int $dst_height,
int $src_width,
int $src_height
): bool
输出图象到浏览器或文件
image 由图象创建函数(例如imagecreatetruecolor())返回的 GdImage 对象。
file 文件保存的路径或者已打开的流资源(此方法返回后自动关闭该流资源),如果未设置或为 null,将会直接输出原始图象流。
quality 为可选项,范围从 0(最差质量,文件最小)到 100(最佳质量,文件最大)。默认值(-1)使用 IJG 默认的质量值(大约 75)。
imagejpeg(GdImage $image, resource|string|null $file = null, int $quality = -1): bool
*/
//执行剪裁(高质量重采样)
imagecopyresampled($im, $source, 0,0, 0,0, $width,$height, $w,$h);
imagedestroy($source);
//保存到文件
imagejpeg($im, $new_img, 90);
imagedestroy($im);
}