PHP上传图片进行等比缩放可增加水印功能


Posted in PHP onJanuary 13, 2014

啥也不说,直接上代码,大家可以自行添加增加水印功能:

<?php 
/** 
* 
* @author zhao jinhan 
* @date 2014年1月13日11:54:30 
* @email xb_zjh@126.com 
* 
*/ 
header('Content-type:text/html; charset=utf-8'); 
//定义缩略图的宽高 
define('THUMB_WIDTH',300); 
define('THUMB_HEIGHT',300); /** 
* 重新生成上传的文件名 
* @return string 
* @author zhao jinhan 
* 
*/ 
function _file_type($filetype = null){ 
switch($filetype) 
{ 
case "image/jpeg": 
$fileextname = "jpg"; 
break; 
case "image/gif": 
$fileextname = "gif"; 
break; 
case "image/png": 
$fileextname = "png"; 
break; 
default: 
$fileextname = false; 
break; 
} 
return $fileextname?date('YmdHis',time()).'.'.$fileextname:false; 
} 
/** 
* 
* @param string $filename 
* @param string $width 
* @param string $height 
* @param string $quality 
* @param string $savepath 
* @return boolean 
*/ 
function _make_thumb($filename='', $width=THUMB_WIDTH, $height=THUMB_HEIGHT, $savepath='./upload'){ 
if(file_exists($filename)){ 
//上传图片的尺寸 
$imagesize=getimagesize($filename); 
$imagewidth=$imagesize[0]; 
$imageheight=$imagesize[1]; 
$mime = $imagesize['mime']; 
//宽高比例 
$ratio = $imagewidth/$imageheight; 
//新建一个背景图片 
$bgimg = imagecreatetruecolor($width, $height); 
$white = imagecolorallocate($bgimg, 255, 255, 255); 
//填充背景色为白色 
imagefill($bgimg,0,0,$white); 
if($mime == 'image/gif'){ 
$im = @imagecreatefromgif($filename); /* Attempt to open */ 
$outfun = 'imagegif'; 
}elseif($mime == 'image/png'){ 
$im = @imagecreatefrompng($filename); /* Attempt to open */ 
$outfun = 'imagepng'; 
}else{ 
$im = @imagecreatefromjpeg($filename); /* Attempt to open */ 
$outfun = 'imagejpeg'; 
} 
if($ratio > 1){ 
//宽度较大 
if($imagewidth > $width){ 
//缩放图片到背景图片上 
$new_width = $width; 
$new_height = ($width*$imageheight)/$imagewidth; 
$bg_y = ceil(abs(($height-$new_height)/2)); 
imagecopyresampled($bgimg, $im, 0, $bg_y, 0, 0, $new_width, $new_height, $imagewidth, $imageheight); 
}else{ 
//复制图片到背景图片上 
$copy = true; 
} 
}else{ 
//高度较大 
if($imageheight > $height){ 
//缩放图片 
$new_height = $height; 
$new_width = ($height*$imagewidth)/$imageheight; 
$bg_x = ceil(($width-$new_width)/2); 
imagecopyresampled($bgimg, $im, $bg_x, 0, 0, 0, $new_width, $new_height, $imagewidth, $imageheight); 
}else{ 
//复制图片到背景图片上 
$copy = true; 
} 
} 
if($copy){ 
//复制图片到背景图片上 
$bg_x = ceil(($width-$imagewidth)/2); 
$bg_y = ceil(($height-$imageheight)/2); 
imagecopy($bgimg, $im, $bg_x, $bg_y, 0, 0, $imagewidth, $imageheight); 
} 
$ext = _file_type($mime); 
$outfun($bgimg, $savepath.'/'.$ext); 
imagedestroy($bgimg); 
return $savepath.'/'.$ext; 
}else{ 
return false; 
} 
} 
if($_POST){ 
$size = $_POST['size']?strtoupper(trim($_POST['size'])):'2M'; 
$imgsize = $_FILES['img']['size']?$_FILES['img']['size']/(1024*1024):0; 
$imgwidth = $imgheight = $_POST['width-height']?intval($_POST['width-height']):300; 
//自定定义文件上传大小 
ini_set('upload_max_filesize',$size); 
$mathsize = str_replace('M','',$size); 
if($imgsize>$mathsize){ 
echo "图片大小不得超过{$size}!"; 
return; 
} 
if($file_name = _file_type($_FILES['img']['type'])){ 
if($_FILES['img']['error'] == UPLOAD_ERR_OK){ 
$savepath = 'upload/'; 
if(!is_dir($savepath)){ 
mkdir($savepath,0644); 
} 
//生成缩略图 
$thumb_file = _make_thumb($_FILES['img']['tmp_name'], $imgwidth, $imgheight, $savepath); 
//move_uploaded_file($_FILES['img']['tmp_name'],$savepath.$file_name); 
echo "生成后的图片为:<img src='".$thumb_file."' />"; 
}else{ 
echo $_FILES['img']['error']; 
return; 
} 
}else{ 
echo "图片格式不正确,请上传jpg,gif,png的格式!"; 
return; 
} 

}else{ 
echo <<<EOT 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 
<title>缩放图片保存成正方形</title> 
</head> 
<body> 
<form action="" method="POST" enctype="multipart/form-data"> 
<div> 
<label>上传一张图片:</label> 
<input type="file" name="img" /> 
</div> 
<div> 
<label>生成缩略图的宽高(单位px):</label> 
<input type="text" name="width-height" value="300" /> 
</div> 
<div> 
<label>文件大小上限:</label> 
<input type="text" name="size" value="2M" /> 
</div> 
<div><input type="submit" name="submit" value="提交" /></div> 
</form> 
</body> 
</html> 
EOT; 
}
PHP 相关文章推荐
PHP文本操作类
Nov 25 PHP
默默简单的写了一个模板引擎
Jan 02 PHP
用PHP 快速生成 Flash 动画的方法
Mar 06 PHP
ThinkPHP php 框架学习笔记
Oct 30 PHP
探讨GDFONTPATH能否被winxp下的php支持
Jun 21 PHP
关于PHPDocument 代码注释规范的总结
Jun 25 PHP
php获取汉字首字母的函数
Nov 07 PHP
PHP保存带BOM文件的方法
Feb 12 PHP
PHP register_shutdown_function()函数的使用示例
Jun 23 PHP
php函数连续调用实例分析
Jul 30 PHP
PHP实现批量清空删除指定文件夹所有内容的方法
May 30 PHP
PHP实现的文件上传类与用法详解
Jul 05 PHP
php网站地图生成类示例
Jan 13 #PHP
php防止sql注入示例分析和几种常见攻击正则表达式
Jan 12 #PHP
php中文验证码实现示例分享
Jan 12 #PHP
PHP 下载文件时自动添加bom头的方法实例
Jan 10 #PHP
php环境下利用session防止页面重复刷新的具体实现
Jan 09 #PHP
浅析php数据类型转换
Jan 09 #PHP
js和php邮箱地址验证的实现方法
Jan 09 #PHP
You might like
PHP+Mysql+jQuery实现动态展示信息
2011/10/08 PHP
PHP中file_exists函数不支持中文名的解决方法
2014/07/26 PHP
php curl上传、下载、https登陆实现代码
2017/07/23 PHP
PHP+jQuery实现即点即改功能示例
2019/02/21 PHP
input、button的不同type值在ajax提交表单时导致的陷阱
2009/02/24 Javascript
window.location.hash 属性使用说明
2010/03/20 Javascript
基于JQuery实现的图片自动进行缩放和裁剪处理
2014/01/31 Javascript
基于NodeJS的前后端分离的思考与实践(四)安全问题解决方案
2014/09/26 NodeJs
JavaScript基于ajax编辑信息用法实例
2015/07/15 Javascript
一些实用性较高的js方法
2016/04/19 Javascript
解析javascript图片懒加载与预加载的分析总结
2016/10/27 Javascript
Bootstrap警告框(Alert)插件使用方法
2017/03/21 Javascript
基于js的变量提升和函数提升(详解)
2017/09/17 Javascript
js实现图片粘贴到网页
2019/12/06 Javascript
JQuery事件冒泡和默认行为代码实例
2020/05/13 jQuery
Flask框架的学习指南之开发环境搭建
2016/11/20 Python
python内置函数sorted()用法深入分析
2019/10/08 Python
tensorflow之变量初始化(tf.Variable)使用详解
2020/02/06 Python
python 遗传算法求函数极值的实现代码
2020/02/11 Python
Jupyter Notebook远程登录及密码设置操作
2020/04/10 Python
python matplotlib绘制三维图的示例
2020/09/24 Python
python 读取yaml文件的两种方法(在unittest中使用)
2020/12/01 Python
Python经典五人分鱼实例讲解
2021/01/04 Python
Public Desire美国/加拿大:全球性的在线鞋类品牌
2018/12/17 全球购物
给儿子的表扬信
2014/01/15 职场文书
房地产财务部员工岗位职责
2014/03/12 职场文书
法定代表人身份证明书
2014/09/10 职场文书
基层干部群众路线教育实践活动个人对照检查材料
2014/09/23 职场文书
2014镇副书记群众路线专题民主生活会思想汇报
2014/09/23 职场文书
高校自主招生校长推荐信
2015/03/23 职场文书
2016七夕情人节感言
2015/12/09 职场文书
详解Nginx 被动检查服务器的存活状态
2021/10/16 Servers
纯CSS如何禁止用户复制网页的内容
2021/11/01 HTML / CSS
深入浅出讲解Java8函数式编程
2022/01/18 Java/Android
如何创建一个创建MySQL数据库中的datetime类型
2022/03/21 MySQL
NASA 机智号火星直升机拍到了毅力号设备碎片
2022/04/29 数码科技