コード例 #1
0
ファイル: Image.php プロジェクト: igorvasiliev4/magento_code
 /**
  * Keep the aspect ratio of an image
  *
  * @param bool $val
  */
 public function keepAspectRatio($val)
 {
     if ($this->isActive()) {
         $this->_imageObject->keepAspectRatio($val);
     }
     return $this;
 }
コード例 #2
0
 /**
  * Keep the aspect ratio of an image
  *
  * @param bool $val
  */
 public function keepAspectRatio($val)
 {
     if ($this->isActive()) {
         $this->_settings['keep_aspect_ratio'] = $val;
         $this->_imageObject->keepAspectRatio($val);
     }
     return $this;
 }