• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

用GD库生成高质量的缩略图片_PHP

php 搞代码 4年前 (2022-01-25) 13次浏览 已收录 0个评论

PHP代码:


<?

$FILENAME="image_name";

// 生成图片的宽度

$RESIZEWIDTH=400;

// 生成图片的高度

$RESIZEHEIGHT=400;

function ResizeImage($im,$maxwidth,$maxheight,$name){

$width = imagesx($im);

$height = imagesy($im);

if(($maxwidth && $width > $maxwidth) || ($maxheight && $height > $maxheight)){

if($maxwidth && $width > $maxwidth){

$widthratio = $maxwidth/$width;

$RESIZEWIDTH=true;

}

if($maxheight && $height > $maxheight){

$heightratio = $maxheight/$height;

$RESIZEHEIGHT=true;

}

if($RESIZEWIDTH && $RESIZEHEIGHT){

if($widthratio < $heightratio){

$ratio = $widthratio;

}else{

$ratio = $heightratio;

}

}elseif($RESIZEWIDTH){

$ratio = $widthratio;

}elseif($RESIZEHEIGHT){

$ratio = $heightratio;

}

$newwidth = $width * $ratio;

$newheight = $height * $ratio;

if(function_exists("imagecopyresampled")){

$newim = imagecreatetruecolor($newwidth, $newheight);

imagecopyresampled($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);

}else{

$newim = imagecreate($newwidth, $newheight);

imagecopyresized($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);

}

ImageJpeg ($newim,$name . ".jpg");

ImageDestroy ($newim);

}else{

ImageJpeg ($im,$name . ".jpg");

}

}

if($_FILES['image']['size']){

if($_FILES['image']['type'] == "image/pjpeg"){

$im = imagecreatefromjpeg($_FILES['ima本2文来*源gao($daima.com搞@代@#码(网搞gaodaima代码ge']['tmp_name']);

}elseif($_FILES['image']['type'] == "image/x-png"){

$im = imagecreatefrompng($_FILES['image']['tmp_name']);

}elseif($_FILES['image']['type'] == "image/gif"){

$im = imagecreatefromgif($_FILES['image']['tmp_name']);

}

if($im){

if(file_exists("$FILENAME.jpg")){

unlink("$FILENAME.jpg");

}

ResizeImage($im,$RESIZEWIDTH,$RESIZEHEIGHT,$FILENAME);

ImageDestroy ($im);

}

}

?>

<?%20echo($FILENAME.".jpg?reload=".rand(0,999999)); ?>">



搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:用GD库生成高质量的缩略图片_PHP

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址