【发布时间】:2014-07-12 16:54:21
【问题描述】:
我使用了图片扩展来调整图片大小。它工作正常。这是代码
$image = Yii::app()->image->load(Yii::getPathOfAlias('webroot').'/files/galaryimages/'.$fileName);
$image->resize(900, 600)->quality(75)->sharpen(20);
$image->save();
但仅当图像尺寸大于固定宽度和高度时我才需要调整大小我该怎么做?
http://www.yiiframework.com/extension/image/#hh5
【问题讨论】:
-
你大概可以分别得到像
$image->width();和$image->height();这样的宽度和高度。 Here is the Reference -
@ThinkDifferent 出现致命错误:调用未定义的方法 Image::width()
标签: php yii yii-extensions