上传php上传图片,生成略缩图,加水印工具类

上传工具  时间:2021-02-23  阅读:()

PHP上传图片生成略缩图加水印工具类var$annexF older=upload//附件存放点默认为 annexvar $smallFolder=small //缩略图存放路径注必须是放在$annexFolder下的子目录默认为 smallimgvar$markF older=mark//水印图片存放处var$upFileType=jpg gif png//上传的类型默认为 jpg gif png rar zipvar$upFileMax=1024;//上传大小限制单位是“KB”默认为 1024KBvar$fontTyp e;//字体v ar$m ax Width=500; //图片最大宽度var$maxHeight=600; //图片最大高度function UpImages($annexFolder,$smallFo lder,$includeFo lder) {

$this-annexF older=$annexF older;

$this- smallF o lder=$smallF o lder;

$this-fontType=$inc ludeFolder. /04B_08__.TTFfunc tion upLoad($inputName) {

$imageName=time();//设定当前时间为图片名称if(@empty($_F I LES[$inputName][name]))die(没有上传图片信息请确认

$name=explode( . ,$_FILES[$inputName][name ]);//将上传前的文件以“.”分开取得文件类型

$imgCount=c ount($name);//获得截取的数量

$imgTyp e=$name[$imgCount-1];//取得文件的类型if(s trp os($this- upF ileTyp e,$imgTyp e) === fals e) die(error(上传文件类型仅支持.$this-upFileType.不支持.$imgType));

$photo=$imageName. . .$imgType;//写入数据库的文件名

$uploadFile=$this-annexFolder. / .$photo;//上传后的文件名称

$upFileok=move_uploaded_file($_FILES[$inputName][ tmp_name],$uploadFile);if($upFileok) {

$imgSize=$_FILES[$inputName][ size

$kSize=round($imgSize/1024);if($kS ize($this-upF ile Max*1024)) {

@unlink($up lo adF il e);die(error(上传文件超过.$this-upF ileMax.KB));

} els e {die(error(上传图片失败请确认你的上传文件不超过$upFileMax KB或上传时间超时));r eturn$photo;function getInfo($photo) {

$photo=$this-annexF older. / .$photo;

$imageInfo=getimagesize($photo);

$imgInfo[w idth]=$imageInfo[0];

$imgInfo[height ]=$imageInfo[1];

$imgInfo[ typ e]=$imageInfo[2];

$imgInfo[name]=basename($photo);r eturn$imgI nfo;function smallImg($photo,$width=128,$height=128) {

$imgInfo=$this-getInfo($photo);

$photo=$this-annexF older. / .$photo;//获得图片源

$newName=s ub s tr($imgInfo[name],0,s trrpos($imgInfo[name], . ))._thumb.jpg//新图片名称if($im g I n fo[ typ e]==1) {

$img=imagecreatefromgif($photo);

} els eif($imgInfo[ type]==2) {

$img=imagecreatefromjpeg($photo);

} els eif($imgInfo[ type]==3) {

$img=imagecreatefrompng($photo);

} els e {

$img=if(empty($img)) return F als e;

$w idth=($w idth$imgI nfo[w idth]) ?$imgI nfo[w idth] :$w idth;

$height=($height$imgInfo[height ])?$imgInfo[height ] :$height;

$srcW=$imgInfo[width

$srcH=$imgInfo[heightif($src W*$w idth$s rc H* $height) {

$height=round($src H* $w idth/$src W);

} els e {

$w idth=round($src W* $height /$src H);if(func tion_exists( imagec reatetruec olor)) {

$newImg=imagec reatetruec olor($w idth, $height);

ImageCopyRes ampled($new Img, $img, 0, 0, 0, 0, $w idth, $height, $imgInfo[w idth ],$imgInfo[height ]);

} els e {

$newI mg=imag ec r eate($w idth,$height);

ImageCopyRes ized($new Img, $img, 0, 0, 0, 0, $w idth, $height, $imgInfo[ w idth ],$imgInfo[height ]);if($this- toF ile) {if (file_ex is ts($this- annexF older. / .$this- s mallF older. / .$newName))@unlink($this-annexFolder. / .$this- smallFo lder. / .$newName);

ImageJPEG($new Img,$this-annexFolder. / .$this- smallFold er. / .$newName);return$this-annexF older. / .$this- s mallF old er. / .$newName;

} els e {

ImageJPEG($newImg);

ImageDestroy($newImg);

ImageDestroy($img);r eturn$new Nam e;function waterMark($photo,$text) {

$imgInfo=$this-getInfo($photo);

$photo=$this-annexF older. / .$photo;

$newName=subs tr($imgInfo[name],0,s trrpos($imgInfo[name], . )) ._mark.jpgsw itch($imgInfo[ type]) {case 1:

$img=imagecreatefromgif($photo);break;case2:

$img=imagecreatefromjpeg($photo);break;case3:

$img=imagecreatefrompng($photo);break;default:r eturn F als e;if(empty($img))return F als e;

$w idth=($this-m axWidth$im g I n fo[w idth]) ?$im g I n fo[w idth] :$this-m axWidth;

$height=($this-maxHe ight$imgInfo[height ]) ?$img Info[height ] :$this-maxHe ight;

$srcW=$imgInfo[width

$srcH=$imgInfo[heightif($src W*$w idth$s rc H* $height) {

$height=round($src H* $w idth/$src W);

} els e {

$w idth=round($src W* $height /$src H);if(func tion_exists( imagecreatetruec olor)) {

$newImg=imagec reatetruec olor($w idth, $height);

ImageCopyRes ampled($new Img, $img, 0, 0, 0, 0, $w idth, $height, $imgInfo[w idth ],$imgInfo[height ]);

} els e {

$newI mg=imag ec r eate($w idth,$height);

ImageCopyRes ized($newImg, $img, 0, 0, 0, 0, $w idth, $height, $imgInfo[ w idth ],

$imgInfo[height ]);

$white=imageColorAllocate($newImg,255,255,255);

$black=imageColorAllocate($newImg,0,0,0);

$alpha=imageCo lorAlloc ateAlpha($newImg,230,230,230,40);

ImageF illedRec tangle($new Img,0, $height-26,$w idth, $height, $alpha);

ImageFilledRectangle($newImg, 13, $height-20, 15,$height-7, $black);

ImageT TF Text($new Img,4.9,0,20,$height-14, $blac k,$this-fontType, $text[0]);

ImageT TF Text($new Img,4.9,0,20,$height-6, $blac k,$this-fontType, $text[1]);if($this- toF ile) {if (file_ex is ts($this- annexF older. / .$this- markF older. / .$newName))@unlink($this-annexF older. / .$this-markF older. / .$newName);

ImageJPEG($new Img,$this-annexF older. / .$this-markF older. / .$newName);return$this-annexF o lder. / .$this-markF o lder. / .$new Name;

} els e {

ImageJPEG($newImg);

ImageDestroy($newImg);

ImageDestroy($img);r eturn$new Nam e;

CloudCone2核KVM美国洛杉矶MC机房机房2.89美元/月,美国洛杉矶MC机房KVM虚拟架构2核1.5G内存1Gbps带宽,国外便宜美国VPS七月特价优惠

近日CloudCone发布了七月的特价便宜优惠VPS云服务器产品,KVM虚拟架构,性价比最高的为2核心1.5G内存1Gbps带宽5TB月流量,2.89美元/月,稳定性还是非常不错的,有需要国外便宜VPS云服务器的朋友可以关注一下。CloudCone怎么样?CloudCone服务器好不好?CloudCone值不值得购买?CloudCone是一家成立于2017年的美国服务器提供商,国外实力大厂,自己开...

印象云七夕促销,所有机器7折销售,美国CERA低至18元/月 年付217元!

印象云,成立于2019年3月的商家,公司注册于中国香港,国人运行。目前主要从事美国CERA机房高防VPS以及香港三网CN2直连VPS和美国洛杉矶GIA三网线路服务器销售。印象云香港三网CN2机房,主要是CN2直连大陆,超低延迟!对于美国CERA机房应该不陌生,主要是做高防服务器产品的,并且此机房对中国大陆支持比较友好,印象云美国高防VPS服务器去程是163直连、三网回程CN2优化,单IP默认给20...

萤光云(20元/月),香港CN2国庆特惠

可以看到这次国庆萤光云搞了一个不错的折扣,香港CN2产品6.5折促销,还送50的国庆红包。萤光云是2002年创立的商家,本次国庆活动主推的是香港CN2优化的机器,其另外还有国内BGP和高防服务器。本次活动力度较大,CN2优化套餐低至20/月(需买三个月,用上折扣+代金券组合),有需求的可以看看。官方网站:https://www.lightnode.cn/地区CPU内存SSDIP带宽/流量价格备注购...

上传工具为你推荐
网页解密如何查看网页中的密码刷网站权重如何提高网站权重和流量网站联盟网站联盟的运作流程不兼容WIN7 64位系统与某些软件不兼容怎么办?今日热点怎么删除“今日热点”到底要怎样才能取消弹窗,每次开机都会安卓应用平台安卓系统支持的软件并不是那么多,为什么这么多人推崇?ios7固件下载iphone自动下载IOS7固件版本怎么删除gbk编码表如何制作GBK与Unicode的对照表网站地图制作如何制作网站地图sitemap,经验分享freebsd安装FreeBSD怎么安装
重庆vps租用 免费域名跳转 2019年感恩节 荣耀欧洲 美国主机网 isatap 68.168.16.150 标准机柜尺寸 帽子云 有奖调查 怎么测试下载速度 工作站服务器 东莞服务器 789电视剧 华为云服务登录 登陆空间 台湾google 上海电信测速 国外在线代理服务器 中国联通宽带测速 更多