php 获将上传的图片进行处理
首先图片已经上传到某个文件夹了。现在想将上传好的图片传成png格式(或者是jpg、gif,但绝不是仅仅修改扩展名。)然后将大小调成40px*40px,怎么实现?...
首先图片已经上传到某个文件夹了。现在想将上传好的图片传成png格式(或者是jpg、gif,但绝不是仅仅修改扩展名。)然后将大小调成40px*40px,怎么实现?
展开
2个回答
展开全部
function createthumb($src,$otype,$album)
{
if($otype!=".bmp")
{
$picname=basename($src);
$type=strtolower($otype);
$im_des="thumb/".$album."_".$picname.".jpg";
if($type==".jpg"||$type==".jpeg")
$im=@imagecreatefromjpeg($src);
if($type==".gif")
$im=@imagecreatefromgif($src);
if($type==".png")
$im=@imagecreatefrompng($src);
$width=@imagesx($im);
$height=@imagesy($im);
@$ratio=$height/$width;
if($ratio<0.9)
{
$newwidth=100;
@$newheight=$height*(100/$width);
}
else
{
$newheight="90";
$newwidth=$width*(90/$height);
}
$im_s=@imagecreatetruecolor($newwidth,$newheight);
@imagecopyresized($im_s,$im,0,0,0,0,$newwidth,$newheight,$width,$height);
@imagejpeg($im_s,$im_des,70);
chmod($im_des,0777);
@imagedestroy($im);
}
}
{
if($otype!=".bmp")
{
$picname=basename($src);
$type=strtolower($otype);
$im_des="thumb/".$album."_".$picname.".jpg";
if($type==".jpg"||$type==".jpeg")
$im=@imagecreatefromjpeg($src);
if($type==".gif")
$im=@imagecreatefromgif($src);
if($type==".png")
$im=@imagecreatefrompng($src);
$width=@imagesx($im);
$height=@imagesy($im);
@$ratio=$height/$width;
if($ratio<0.9)
{
$newwidth=100;
@$newheight=$height*(100/$width);
}
else
{
$newheight="90";
$newwidth=$width*(90/$height);
}
$im_s=@imagecreatetruecolor($newwidth,$newheight);
@imagecopyresized($im_s,$im,0,0,0,0,$newwidth,$newheight,$width,$height);
@imagejpeg($im_s,$im_des,70);
chmod($im_des,0777);
@imagedestroy($im);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询