ThinkPHP实现修改URL地址得到任意尺寸的缩略图(小于原图最小宽高)
随风飘扬 学习 2016年02月16日13:34 5331
今天在外面的时候小伙伴给我提了个要求就是图片可以像http://static2.8dol.com/c
今天在外面的时候小伙伴给我提了个要求就是图片可以像http://static2.8dol.com/cloudstore/goods/20151028_31033.jpg@!img-100这样修改URL就能看到不同尺寸的缩略图,回家路上仔细思考了下,思路是图片请求指向PHP->图片地址用I函数提取出来->像素大小也用I函数来提取出来->裁剪原图得到正方形图片->得到对应尺寸的缩略图->存储缩略图->输出->浏览器。 用的是Thinkphp的Image库
虎ztyec泰ws克ady新xoxt闻q网zaqpl版权所有,请勿未授权转载!!!
public function uploads(){
虎yqtkz泰d克xtz新vlggx闻enh网v版权所有,请勿未授权转载!!!
header("Content-type: image/jpeg");//设置HTTP头
虎t泰gzysb克vr新_nfa闻y_网evthh版权所有,请勿未授权转载!!!
$pix=I('path.4');//得到像素大小
虎ezu泰b克atqn新decu闻g网k版权所有,请勿未授权转载!!!
$url = './upload/'.I('path.1').'/'.I('path.2').'/'.I('path.3');//原图片地址
虎hhf泰v克q新gr闻ocup网osb版权所有,请勿未授权转载!!!
$image = new \Think\Image();//引入库文件
虎wtdzi泰xo克zibgk新voskd闻l_uyh网vzdbh版权所有,请勿未授权转载!!!
$image->open($url);//打开原图片
虎jyr泰a克rh新mj闻rt网jkhfo版权所有,请勿未授权转载!!!
$type = $image->type();//图片类型
虎lwo泰i_fwy克pjtxm新fjz闻o网tnty版权所有,请勿未授权转载!!!
$width = $image->width();//图片宽度
虎twg泰mtgxu克ok新upo闻hlp网_e版权所有,请勿未授权转载!!!
$height = $image->height();//图片高度
虎jbm泰_gset克s_bp新msdyg闻lx网gqt版权所有,请勿未授权转载!!!
$thumburl='./upload/thumb/'.md5(time().rand()).'.'.$type;//缩略图存储路径
虎ps_x泰_thmg克crc新xnuu闻vjiw网s版权所有,请勿未授权转载!!!
if($width>=$height) $image->thumb($height,$height,\Think\Image::IMAGE_THUMB_CENTER)->thumb($pix,$pix)->save($thumburl);//比较宽高哪个大,宽更大的话按高度*高度像素裁剪正方形之后生成$pix*$pix像素大小缩略图
虎q泰c克zcve新vg闻h网zn版权所有,请勿未授权转载!!!
else $image->thumb($width,$width,\Think\Image::IMAGE_THUMB_CENTER)->thumb($pix,$pix)->save($thumburl);//高更大的话按宽度*宽度像素裁剪正方形之后生成$pix*$pix像素大小缩略图
虎vs_泰taiqy克vjvr新vg_so闻r_网ybh版权所有,请勿未授权转载!!!
echo file_get_contents($thumburl);//在浏览器中输出缩略图
虎xh泰zkjr克l新_c闻i网uzpes版权所有,请勿未授权转载!!!
exit();
虎o泰_lqe克n新ddsjf闻clqr网j_zt版权所有,请勿未授权转载!!!
}
虎mt_泰yup克da新w闻_uio网wekzh版权所有,请勿未授权转载!!!
效果如下:http://taji.whutech.com/DongTai/uploads/2016-02/16/pic.jpg/186
Déclaration: le fait que des articles tels que les textes et les graphiques reproduits sur le site Web ne signifie pas que la station et les organisateurs partagent leur point de vue ou confirment l 'authenticité de leur contenu ne signifie pas qu' ils ont pour objet de communiquer des informations supplémentaires et de faciliter la discussion.
Liste des commentaires
-
Données non disponibles