php – 调整服务器上的图像大小
作者:互联网
我制作了一个负责上传图像的文件,然后将这些图像移动到服务器中的文件夹中.我想我不能直接在$_FILES数组中调整图像大小,所以我认为我必须在服务器后调整图像大小,所以我的问题是,如何调整服务器中的图像?
这是我的代码的一部分:
//This is after getting target which is the file saved on the server
move_uploaded_file($_FILES[$str]['tmp_name'], $target);
scale_image($target);
现在函数scale_image()
function scale_image($image)
{
if(!empty($image)) //the image to be uploaded is a JPG I already checked this
{
$source_image = imagecreatefromjpeg($image);
$source_imagex = imagesx($source_image);
$source_imagey = imagesy($source_image);
$dest_imagex = 300;
$dest_imagey = 200;
$image = imagecreatetruecolor($dest_imagex, $dest_imagey);
imagecopyresampled($image, $source_image, 0, 0, 0, 0,
$dest_imagex, $dest_imagey, $source_imagex, $source_imagey);
}
}
但这似乎不起作用,它移动文件但没有调整大小.
解决方法:
PHP内置了GD library.
有许多功能可用于操纵图像,但不需要重新发明轮子.
查看这个要点的简单图像处理类 – https://gist.github.com/880506
这是一个示例用法……
$im = new ImageManipulator($_FILES['field_name']['tmp_name']);
$im->resample(640, 480); // resize to 640x480
$im->save('/path/to/destination/image.jpg', IMAGETYPE_JPEG);
标签:php,image-resizing 来源: https://codeday.me/bug/20191002/1841971.html