开发者

Codeigniter image manipulation

I am uploading an image and creating thumbnail for different size. The category are 32px/32px, 64px/64px, 150px/150px. It doing all great except one. It calculates the hieght automatically base 开发者_StackOverflowon “maintain_ratio” = true property. But i don’t want that. it should be fixed with my defined dimension. But i can’t found such option for that. So do you any idea how i can do this??


here is my image_lib setting..

$this->load->library('image_lib');
$imageinit['source_image']         = $path;
$imageinit['maintain_ratio']     = false;
$imageinit['width']             = $width;
$imageinit['height']             = $height;
$this->image_lib->initialize($imageinit);
if(!$this->image_lib->resize()){
echo $this->image_lib->display_errors();
}

just set the maintain_ratio to false, and set your width and height. it works fine for me..

you can see the complete preference of image_lib here.. http://codeigniter.com/user_guide/libraries/image_lib.html

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜