当前位置: 代码迷 >> PHP >> 自个儿写的php生成缩略图
  详细解决方案

自个儿写的php生成缩略图

热度:21   发布时间:2016-04-29 00:15:16.0
自己写的php生成缩略图
今天无聊,学了一下php生成 缩略图···然后发现书上说得太复杂了,于是自己搞了一个,不会被拉伸的东东····代码极其简介 ···所以不注释····
<?php        $sourceimage = '3.jpg';        $maxthumbWidth = 200;        $maxthumbHeight = 800;                $original = imagecreatefromjpeg($sourceimage);        $dims = getimagesize($sourceimage);                $a = $maxthumbWidth/$dims[0];        $b = $maxthumbHeight/$dims[1];        if($a<$b)        {                $thumbWidth = $maxthumbWidth;                $thumbHeight = $dims[1]*$a;        }        else         {                $thumbWidth = $dims[0]*$b;                $thumbHeight = $maxthumbHeight;        }                $thumb = imagecreatetruecolor($thumbWidth,$thumbHeight);                imagecopyresampled($thumb,$original,0,0,0,0,$thumbWidth,$thumbHeight,$dims[0],$dims[1]);                header("Content-type:image/jpeg");        imagejpeg($thumb);?>
  相关解决方案