<?php
/**
*
*函数:调整图片尺寸或生成缩略图
*返回:True/False
*参数:
* $Image 需要调整的图片(含路径)
* $Dw=450 调整时最大宽度;缩略图时的绝对宽度
* $Dh=450 调整时最大高度;缩略图时的绝对高度
* $Type=1 1,调整尺寸; 2,生成缩略图
*/
$phtypes=array('img/gif', 'img/jpg', 'img/jpeg', 'img/bmp', 'img/pjpeg', 'img/x-png');
function compressImg($Image,$Dw,$Dh,$Type){
$Img =@imagecreatefromstring($Image);
// 如果对象没有创建成功,则说明非图片文件
IF(Empty($Img)){
// 如果是生成缩略图的时候出错,则需要删掉已经复制的文件
return false;
}
// 如果是执行调整尺寸操作则
IF($Type==1){
$w=ImagesX($Img);
$h=ImagesY($Img);
$width = $w;
$height = $h;
IF($width>$Dw){
$Par=$Dw/$width;
$width=$Dw;
$height=$height*$Par;
IF($height>$Dh){
$Par=$Dh/$height;
$height=$Dh;
$width=$width*$Par;
}
} ElseIF($height>$Dh) {
$Par=$Dh/$height;
$height=$Dh;
$width=$width*$Par;
IF($width>$Dw){
$Par=$Dw/$width;
$width=$Dw;
$height=$height*$Par;
}
} Else {
$width=$width;
$height=$height;
}
$nImg =ImageCreateTrueColor($width,$height);// 新建一个真彩色画布
ImageCopyReSampled($nImg,$Img,0,0,0,0,$width,$height,$w,$h);// 重采样拷贝部分图像并调整大小
ImageJpeg($nImg);// 以JPEG格式将图像输出到浏览器或文件
return true;
} Else {// 如果是执行生成缩略图操作则
$w=ImagesX($Img);
$h=ImagesY($Img);
$width = $w;
$height = $h;
$nImg =ImageCreateTrueColor($Dw,$Dh);
IF($h/$w>$Dh/$Dw){// 高比较大
$width=$Dw;
$height=$h*$Dw/$w;
$IntNH=$height-$Dh;
ImageCopyReSampled($nImg, $Img, 0, -$IntNH/1.8, 0, 0, $Dw, $height, $w, $h);
} Else {// 宽比较大
$height=$Dh;
$width=$w*$Dh/$h;
$IntNW=$width-$Dw;
ImageCopyReSampled($nImg, $Img,-$IntNW/1.8,0,0,0, $width, $Dh, $w, $h);
}
ImageJpeg($nImg);
return true;
}
};
$arrContextOptions=array(
"ssl"=>array(
"verify_peer"=>false,
"verify_peer_name"=>false,
),
);
$imgPath = 'https://old.typecho.bearlab.in/usr/uploads/2021/11/4214120057.png';//远程URL 地址
header('Content-Type: image/png');
$bigImg=file_get_contents($imgPath, false , stream_context_create($arrContextOptions));//GrabImage($imgPath, $tempPath);
//echo $bigImg;exit;
compressImg($bigImg,100,100,1);