|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
这些过程被存储和运行在数据库服务器上,以减少在客户端的处理过程,从而最大限度地提高了处理能力,因为通常情况下数据库服务器会运行地更快。存储过程并不是MySQL独有的功能,但是这个最近新增加的功能使得这个数据库比以前更具吸引力了。处置办法是:
1.当原始图片的宽或高任一比划定的尺寸小,只举行等比缩略处置,
2.当原始图片的宽与高都比划定尺寸年夜,先辈行等比缩略处置,然后算出居中地位举行裁剪
<?php
/*
*$o_photo原始图片路径
*$d_photo处置后图片路径
*$width界说宽
*$height界说高
*挪用办法cutphoto("test.jpg","temp.jpg",256,146);
*/
functioncutphoto($o_photo,$d_photo,$width,$height){
$temp_img=imagecreatefromjpeg($o_photo);
$o_width=imagesx($temp_img);//获得原始图片宽
$o_height=imagesy($temp_img);//获得原始图片高
//判别处置办法
if($width>$o_width||$height>$o_height){//原始图片宽或高比划定的尺寸小,举行紧缩
$newwidth=$o_width;
$newheight=$o_height;
if($o_width>$width){
$newwidth=$width;
$newheight=$o_height*$width/$o_width;
}
if($newheight>$height){
$newwidth=$newwidth*$height/$newheight;
$newheight=$height;
}
//缩略图片
$new_img=imagecreatetruecolor($newwidth,$newheight);
imagecopyresampled($new_img,$temp_img,0,0,0,0,$newwidth,$newheight,$o_width,$o_height);
imagejpeg($new_img,$d_photo);
imagedestroy($new_img);
}else{//原始图片宽与高都比划定尺寸年夜,举行紧缩后裁剪
if($o_height*$width/$o_width>$height){//先断定width与划定不异,假如height比划定年夜,则ok
$newwidth=$width;
$newheight=$o_height*$width/$o_width;
$x=0;
$y=($newheight-$height)/2;
}else{//不然断定height与划定不异,width自顺应
$newwidth=$o_width*$height/$o_height;
$newheight=$height;
$x=($newwidth-$width)/2;
$y=0;
}
//缩略图片
$new_img=imagecreatetruecolor($newwidth,$newheight);
imagecopyresampled($new_img,$temp_img,0,0,0,0,$newwidth,$newheight,$o_width,$o_height);
imagejpeg($new_img,$d_photo);
imagedestroy($new_img);
$temp_img=imagecreatefromjpeg($d_photo);
$o_width=imagesx($temp_img);//获得缩略图宽
$o_height=imagesy($temp_img);//获得缩略图高
//裁剪图片
$new_imgx=imagecreatetruecolor($width,$height);
imagecopyresampled($new_imgx,$temp_img,0,0,$x,$y,$width,$height,$width,$height);
imagejpeg($new_imgx,$d_photo);
imagedestroy($new_imgx);
}
}
?>而且其固有的弹性使得它易于扩展以处理不断增长的需求,或当需求MySQL学习教程减弱时缩减规模。 |
|