SQL Server essence

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

Image Thumbnailer for Zend Framework 2

支持的功能:图片缩放,剪裁,填充,旋转,显示和存储图片。

 

例子:

将下面的代码加入controller中, 显示一副小图片:

$thumbnailer = $this->getServiceLocator()->get('WebinoImageThumb');
$imagePath   = 'public/images/example.jpg';
$thumb       = $thumbnailer->create($imagePath, $options = array(), $plugins = array());

$thumb->resize(100, 100);

$thumb->show();
// or/and
$thumb->save('public/images/resized.jpg');

 

链接:https://github.com/webino/WebinoImageThumb

posted on 2013-12-17 10:31  天蝎  阅读(204)  评论(0编辑  收藏  举报