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;
搬瓦工最近上线了一个新的荷兰机房,荷兰 EUNL_9 机房,这个 9 的编号感觉也挺随性的,之前的荷兰机房编号是 EUNL_3。这次荷兰新机房 EUNL_9 采用联通 AS9929 高端路线,三网都接入了 AS9929,对于联通用户来说是个好消息,又多了一个选择。对于其他用户可能还是 CN2 GIA 机房更合适一些。其实对于联通用户,这个荷兰机房也是比较远的,相比之下日本软银 JPOS_1 机房可...
这两天Linode发布了十八周年的博文和邮件,回顾了过去取得的成绩和对未来的展望。作为一家运营18年的VPS主机商,Linode无疑是有一些可取之处的,商家提供基于KVM架构的VPS主机,支持随时删除(按小时计费),可选包括美国、英国、新加坡、日本、印度、加拿大、德国等全球十多个数据中心,所有机器提供高出入网带宽,最低仅$5/月($0.0075/小时)。This month marks Linod...
WordPress专业外贸企业网站搭建模版,特色专业外贸企业风格 + 自适应网站开发设计 通用流行的外贸企业网站模块 + 更好的SEO搜索优化和收录 自定义多模块的产品展示功能 + 高效实用的后台自定义模块设置!采用标准的HTML5+CSS3语言开发,兼容当下的各种主流浏览器: IE 6+(以及类似360、遨游等基于IE内核的)、Firefox、Google Chrome、Safari、Opera...