我在网上找到了一段代码可以实现利用缩放减小图片大小,但是如何对缩放后的图片进行上传?
<?php
header("content-type:image/png");
/**
@return bool|string
*/
function image_resize($imagedata, $width, $height, $per = 0.5) {
// 1 = GIF,2 = JPG,3 = PNG,4 = SWF,5 = PSD,6 = BMP,7 = TIFF(intel byte order),8 = TIFF(motorola byte order),9 = JPC,10 = JP2,11 = JPX,12 = JB2,13 = SWC,14 = IFF,15 = WBMP,16 = XBM
// 获取图像信息
list($bigWidth, $bigHight, $bigType) = getimagesizefromstring($imagedata);
// 缩放比例
if ($per > 0) {
$width = $bigWidth * $per;
$height = $bigHight * $per;
}
// 创建缩略图画板
$block = imagecreatetruecolor($width, $height);
// 启用混色模式
imagealphablending($block, false);
// 保存PNG alpha通道信息
imagesavealpha($block, true);
// 创建原图画板
$bigImg = imagecreatefromstring($imagedata);
// 缩放
imagecopyresampled($block, $bigImg, 0, 0, 0, 0, $width, $height, $bigWidth, $bigHight);
// 生成临时文件名
$tmpFilename = tempnam(sys_get_temp_dir(), 'image_');
// 保存
switch ($bigType) {
case 1: imagegif($block, $tmpFilename);
break;
case 2: imagejpeg($block, $tmpFilename);
break;
case 3: imagepng($block, $tmpFilename);
break;
}
// 销毁
imagedestroy($block);
$image = file_get_contents($tmpFilename);
unlink($tmpFilename);
return $image;
}
// 缩放图像
echo image_resize(file_get_contents('C:\Users\10633\Pictures\Camera Roll\微信图片_20180614094713.jpg'), 100, 200);
?>
读取文件内容,内容为base64字符串然后上传。就是说接口读取的base64,后用数据创建文件。
或者类似于表单提交,传文件。可以用curl 或者apifox这种第三方软件。接口接收文件对象,然后操作。
原理就是本地有文件(原文件或者压缩后文件),作为表单数据或者字符串数据上传。
文件上传得调php.ini配置,上传的缓存大小和php处理的缓存大小,这个百度下就好。