Codeigniter(CI)智能不失真裁剪图片生成缩略图的示例代码
分类:PHP_Python| 发布:佚名| 查看:664 | 发表时间:2014/8/19
一副1024*768大小的图片,裁剪到240*240大小,裁剪后不失真,尽可能保留图片主题含义。
我使用到的方法:
1. 先将图片等比例缩略到可以裁剪的大小;
如果是宽幅图片,则按高度等比例缩放到高度 = 240px,窄幅图片(高度大于宽度)则按宽度等比例缩放;
2. 按长宽格式居中裁剪;
保留缩略后的图片中间部分;
代码如下:
01 | $this ->load->library( 'image_lib' ); |
02 | list( $width , $height ) = getimagesize ( "camnpr/upload/123.jpg" ); |
03 | $config [ 'image_library' ] = 'gd2' ; |
04 | $config [ 'source_image' ] = 'upload/123.jpg' ; |
05 | $config [ 'maintain_ratio' ] = TRUE; |
08 | $config [ 'master_dim' ] = 'height' ; |
10 | $config [ 'master_dim' ] = 'width' ; |
12 | $config [ 'width' ] = 240; |
13 | $config [ 'height' ] = 240; |
14 | $this ->image_lib->initialize( $config ); |
15 | $this ->image_lib->resize(); |
17 | $config [ 'maintain_ratio' ] = FALSE; |
20 | $config [ 'x_axis' ] = floor (( $width * 240 / $height - 240)/2); |
22 | $config [ 'y_axis' ] = floor (( $height * 240 / $width - 240)/2); |
24 | $this ->image_lib->initialize( $config ); |
25 | $this ->image_lib->crop(); |