我的应用正在从webbrowser接收base64编码的图像文件。我需要将它们保存在客户端上。所以我做了:
$data = base64_decode($base64img);
$fileName = uniqid() . '.jpg';
file_put_contents($uploadPath . $fileName, $data);
return $fileName;
哪种方法正常。
现在我需要压缩&将图像调整为最大值。 800宽度&高度,保持纵横比。
所以我试过了:
$data = base64_decode($base64img);
$fileName = uniqid() . '.jpg';
file_put_contents($uploadPath . $fileName, $data);
return $fileName;
不起作用(错误:“imagejpeg()期望参数1是资源,字符串给定”)。 当然,这会压缩,但不会调整大小。
最好将文件保存在/ tmp中,读取它并通过GD调整大小/移动?
感谢。
第二部分
感谢@ontrack我现在知道了
$data = imagejpeg(imagecreatefromstring($data),$uploadPath . $fileName,80);
的工作原理。
但是现在我需要将图像调整到最大800宽度和高度。我有这个功能:
function resizeAndCompressImagefunction($file, $w, $h, $crop=FALSE) {
list($width, $height) = getimagesize($file);
$r = $width / $height;
if ($crop) {
if ($width > $height) {
$width = ceil($width-($width*($r-$w/$h)));
} else {
$height = ceil($height-($height*($r-$w/$h)));
}
$newwidth = $w;
$newheight = $h;
} else {
if ($w/$h > $r) {
$newwidth = $h*$r;
$newheight = $h;
} else {
$newheight = $w/$r;
$newwidth = $w;
}
}
$src = imagecreatefromjpeg($file);
$dst = imagecreatetruecolor($newwidth, $newheight);
imagecopyresampled($dst, $src, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
return $dst;
}
所以我想我能做到:
$data = imagejpeg(resizeAndCompressImagefunction(imagecreatefromstring($data),800,800),$uploadPath . $fileName,80);
哪个不起作用。
答案 0 :(得分:2)
回答第二部分:
$data = imagejpeg(resizeAndCompressImagefunction(imagecreatefromstring($data),800,800),$uploadPath . $fileName,80);
$ data只包含true或false,表示imagejpeg的操作成功。字节在$uploadPath . $fileName
中。如果您希望在$data
中返回实际字节,则必须使用临时输出缓冲区:
$img = imagecreatefromstring($data);
$img = resizeAndCompressImagefunction($img, 800, 800);
ob_start();
imagejpeg($img, null, 80);
$data = ob_get_clean();