首页 > 后端开发 > php教程 > 自个儿写的php生成缩略图

自个儿写的php生成缩略图

WBOY
发布: 2016-06-13 10:38:40
原创
730 人浏览过

自己写的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);?>
登录后复制

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板