从您的问题来看,您似乎对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 ,将返回jpeg而不是 png,因此可能会返回错误结果。$_FILES["image"]["type"]
$_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()
,代码有点长,但效果很好,它甚至有三个选项:拉伸,收缩, 并填充。
拉伸:输出图像的尺寸与您设置的新尺寸相同。不会保持高/宽比。
收缩:输出图像的尺寸不会超过你给的新尺寸,并保持图像的高/宽比。
填充:输出图像的尺寸将与您提供的新尺寸相同,如果需要,它将裁剪和调整图像大小,并保持图像的高/宽比。此选项是您在问题中需要的。
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');
第六步,调整图片大小使用我们从上面得到的$args
, $width
, $height
,和 $resource 到下面的函数中,得到调整后图片的新资源:$format
function runResize($width, $height, $format, $resource, $args) {
if ($args === false) {
return; //if $args equal to false, this means no resize occurs;
}
$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);
第七步,获取新内容,使用以下函数从新的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);
Step 10 销毁资源别忘了销毁GD资源!
imagedestroy($newresource);
或者您可以将所有代码写入一个类,并简单地使用以下内容:
public function __destruct() {
@imagedestroy($this->resource);
}
尖端
我建议不要转换用户上传的文件格式,你会遇到很多问题。