php 上传图片并按比例生成指定大小图
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-19 15:07:06 浏览: 评论:0
这是一款图象缩略函数,把上传的新图片给$srcfile然后进行文件按$thumbwidth 缩小图宽最大尺寸与$thumbheitht 缩小图高最大尺寸,生成小图.
图象缩略函数,参数说明:
$srcfile 原图地址; $dir 新图目录 $thumbwidth 缩小图宽最大尺寸 $thumbheitht 缩小图高最大尺寸 $ratio 默认等比例缩放 为1是缩小到固定尺寸.
php 上传图片并按比例生成指定大小图实例代码如下:
- function makethumb($srcfile,$dir,$thumbwidth,$thumbheight,$ratio=0)
- {
- //判断文件是否存在
- if (!file_exists($srcfile))return false;
- //生成新的同名文件,但目录不同
- $imgname=explode('/',$srcfile);
- $arrcount=count($imgname);
- $dstfile = $dir.$imgname[$arrcount-1];
- //缩略图大小
- $tow = $thumbwidth;
- $toh = $thumbheight;
- if($tow < 40) $tow = 40;
- if($toh < 45) $toh = 45;
- //获取图片信息
- $im ='';
- if($data = getimagesize($srcfile)) {
- if($data[2] == 1) {
- $make_max = 0;//gif不处理
- if(function_exists("imagecreatefromgif")) {
- $im = imagecreatefromgif($srcfile);
- }
- } elseif($data[2] == 2) {
- if(function_exists("imagecreatefromjpeg")) {
- $im = imagecreatefromjpeg($srcfile);
- }
- } elseif($data[2] == 3) {
- if(function_exists("imagecreatefrompng")) {
- $im = imagecreatefrompng($srcfile);
- }
- }
- }
- if(!$im) return '';
- $srcw = imagesx($im);
- $srch = imagesy($im);
- $towh = $tow/$toh;
- $srcwh = $srcw/$srch;
- if($towh <= $srcwh){
- $ftow = $tow;
- $ftoh = $ftow*($srch/$srcw);
- } else {
- $ftoh = $toh;
- $ftow = $ftoh*($srcw/$srch);
- }
- if($ratio){
- $ftow = $tow;
- $ftoh = $toh;
- }
- //缩小图片
- if($srcw > $tow || $srch > $toh || $ratio) {
- if(function_exists("imagecreatetruecolor") && function_exists("imagecopyresampled") && @$ni = imagecreatetruecolor($ftow, $ftoh)) {
- imagecopyresampled($ni, $im, 0, 0, 0, 0, $ftow, $ftoh, $srcw, $srch);
- } elseif(function_exists("imagecreate") && function_exists("imagecopyresized") && @$ni = imagecreate($ftow, $ftoh)) {
- imagecopyresized($ni, $im, 0, 0, 0, 0, $ftow, $ftoh, $srcw, $srch);
- } else {
- return '';
- }
- if(function_exists('imagejpeg')) {
- imagejpeg($ni, $dstfile);
- } elseif(function_exists('imagepng')) {
- imagepng($ni, $dstfile);
- }
- }else {
- //小于尺寸直接复制
- copy($srcfile,$dstfile);
- }
- imagedestroy($im);
- if(!file_exists($dstfile)) {
- return '';
- } else { //开源代码phpfensi.com
- return $dstfile;
- }
- }
Tags: php上传图片 php图片指定大小
- 上一篇:php 读取目录下图像文件
- 下一篇:php生成缩略图,文本转换成图形
相关文章
- ·php上传图片生成等比例缩略图代码(2014-08-18)
- ·php上传图片并生成缩位图代码(2014-08-20)
- ·php按指定大小等比缩放生成上传图片缩略图(2014-09-09)
- ·php多个文件上传图片上传实例(2015-04-09)
- ·php简单实现批量上传图片的方法(2019-07-28)
- ·php上传图片存入数据库示例分享(2020-10-27)
- ·php实现按指定大小等比缩放生成上传图片缩略图的方法(2021-05-03)
- ·php实现上传图片保存到数据库的方法(2021-05-11)
- ·php修改上传图片尺寸的方法(2021-05-22)
- ·PHP 中 Orientation 属性判断上传图片是否需要旋转(2021-06-20)
- ·php上传图片生成缩略图(GD库)(2021-07-04)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)