从您的疑问来看,您似乎是GD的新手,我将分享我的一些经验,也许这有点偏离主题,但是我认为这对像您这样的GD新手会有帮助:
步骤1,验证文件。使用以下功能检查$_FILES['image']['tmp_name']
文件是否为有效文件:
function getContentsFromImage($image) {
if (@is_file($image) == true) {
return file_get_contents($image);
} else {
throw new \Exception('Invalid image');
}
}
$contents = getContentsFromImage($_FILES['image']['tmp_name']);
步骤2,获取文件格式尝试使用带有finfo扩展名的以下功能来检查文件(内容)的文件格式。你会说为什么不只$_FILES["image"]["type"]
检查文件格式呢?由于它仅检查文件的扩展名而不是文件内容,如果有人重命名原名文件world.png到world.jpg,$_FILES["image"]["type"]
将返回JPEG不PNG,所以$_FILES["image"]["type"]
可能会返回错误的结果。
function getFormatFromContents($contents) {
$finfo = new \finfo();
$mimetype = $finfo->buffer($contents, FILEINFO_MIME_TYPE);
switch ($mimetype) {
case 'image/jpeg':
return 'jpeg';
break;
case 'image/png':
return 'png';
break;
case 'image/gif':
return 'gif';
break;
default:
throw new \Exception('Unknown or unsupported image format');
}
}
$format = getFormatFromContents($contents);
Step.3,获取GD资源从之前的内容中获取GD资源:
function getGDResourceFromContents($contents) {
$resource = @imagecreatefromstring($contents);
if ($resource == false) {
throw new \Exception('Cannot process image');
}
return $resource;
}
$resource = getGDResourceFromContents($contents);
步骤4,获取图像尺寸现在,您可以使用以下简单代码获取图像尺寸:
$width = imagesx($resource);
$height = imagesy($resource);
现在,让我们看看从原始图像中得到了什么变量:
$contents, $format, $resource, $width, $height
OK, lets move on
第5步,计算调整大小的图像参数这一步与您的问题有关,以下函数的目的是为GD函数获取调整大小的参数imagecopyresampled()
,代码虽然很长,但是效果很好,甚至有以下三种选择:Stretch,Shrink ,然后填写。
Stretch:输出图像的尺寸与您设置的新尺寸相同。不会保持高/宽比。
收缩:输出图像的尺寸不会超过您指定的新尺寸,并保持图像的高/宽比。
fill:输出图像的尺寸将与您给定的新尺寸相同,如果需要,它将裁剪和调整图像的尺寸,并保持图像的高宽比。此选项是您在问题中需要的。
function getResizeArgs($width, $height, $newwidth, $newheight, $option) {
if ($option === 'stretch') {
if ($width === $newwidth && $height === $newheight) {
return false;
}
$dst_w = $newwidth;
$dst_h = $newheight;
$src_w = $width;
$src_h = $height;
$src_x = 0;
$src_y = 0;
} else if ($option === 'shrink') {
if ($width <= $newwidth && $height <= $newheight) {
return false;
} else if ($width / $height >= $newwidth / $newheight) {
$dst_w = $newwidth;
$dst_h = (int) round(($newwidth * $height) / $width);
} else {
$dst_w = (int) round(($newheight * $width) / $height);
$dst_h = $newheight;
}
$src_x = 0;
$src_y = 0;
$src_w = $width;
$src_h = $height;
} else if ($option === 'fill') {
if ($width === $newwidth && $height === $newheight) {
return false;
}
if ($width / $height >= $newwidth / $newheight) {
$src_w = (int) round(($newwidth * $height) / $newheight);
$src_h = $height;
$src_x = (int) round(($width - $src_w) / 2);
$src_y = 0;
} else {
$src_w = $width;
$src_h = (int) round(($width * $newheight) / $newwidth);
$src_x = 0;
$src_y = (int) round(($height - $src_h) / 2);
}
$dst_w = $newwidth;
$dst_h = $newheight;
}
if ($src_w < 1 || $src_h < 1) {
throw new \Exception('Image width or height is too small');
}
return array(
'dst_x' => 0,
'dst_y' => 0,
'src_x' => $src_x,
'src_y' => $src_y,
'dst_w' => $dst_w,
'dst_h' => $dst_h,
'src_w' => $src_w,
'src_h' => $src_h
);
}
$args = getResizeArgs($width, $height, 150, 170, 'fill');
步骤6,调整大小的图像使用$args
,$width
,$height
,$format
和$资源,我们从上面钻进了下面的函数,并得到调整后的图像的新资源:
function runResize($width, $height, $format, $resource, $args) {
if ($args === false) {
return;
}
$newimage = imagecreatetruecolor($args['dst_w'], $args['dst_h']);
if ($format === 'png') {
imagealphablending($newimage, false);
imagesavealpha($newimage, true);
$transparentindex = imagecolorallocatealpha($newimage, 255, 255, 255, 127);
imagefill($newimage, 0, 0, $transparentindex);
} else if ($format === 'gif') {
$transparentindex = imagecolorallocatealpha($newimage, 255, 255, 255, 127);
imagefill($newimage, 0, 0, $transparentindex);
imagecolortransparent($newimage, $transparentindex);
}
imagecopyresampled($newimage, $resource, $args['dst_x'], $args['dst_y'], $args['src_x'], $args['src_y'], $args['dst_w'], $args['dst_h'], $args['src_w'], $args['src_h']);
imagedestroy($resource);
return $newimage;
}
$newresource = runResize($width, $height, $format, $resource, $args);
步骤7,获取新内容,使用以下功能从新的GD资源获取内容:
function getContentsFromGDResource($resource, $format) {
ob_start();
switch ($format) {
case 'gif':
imagegif($resource);
break;
case 'jpeg':
imagejpeg($resource, NULL, 100);
break;
case 'png':
imagepng($resource, NULL, 9);
}
$contents = ob_get_contents();
ob_end_clean();
return $contents;
}
$newcontents = getContentsFromGDResource($newresource, $format);
步骤8获取扩展名,使用以下函数从图像格式获取扩展名(注意,图像格式不等于图像扩展名):
function getExtensionFromFormat($format) {
switch ($format) {
case 'gif':
return 'gif';
break;
case 'jpeg':
return 'jpg';
break;
case 'png':
return 'png';
}
}
$extension = getExtensionFromFormat($format);
步骤9保存图像如果我们有一个名为mike的用户,则可以执行以下操作,它将保存到与此php脚本相同的文件夹中:
$user_name = 'mike';
$filename = $user_name . '.' . $extension;
file_put_contents($filename, $newcontents);
步骤10销毁资源不要忘记销毁GD资源!
imagedestroy($newresource);
或者您可以将所有代码编写到一个类中,并只需使用以下代码:
public function __destruct() {
@imagedestroy($this->resource);
}
提示
我建议不要转换用户上传的文件格式,您会遇到很多问题。