當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ImageHelper::resize方法代碼示例

本文整理匯總了PHP中ImageHelper::resize方法的典型用法代碼示例。如果您正苦於以下問題:PHP ImageHelper::resize方法的具體用法?PHP ImageHelper::resize怎麽用?PHP ImageHelper::resize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ImageHelper的用法示例。


在下文中一共展示了ImageHelper::resize方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: resize

 public function resize($path, $width, $height, $options = array(), $htmlAttributes = array(), $return = false)
 {
     $filename = basename($path);
     $uploadsDir = dirname(basename($path));
     if ($uploadsDir === '.') {
         $uploadsDir = '';
     }
     $cacheDir = dirname($path);
     $options = Hash::merge(array('aspect' => true, 'adapter' => false, 'cacheDir' => $cacheDir, 'uploadsDir' => $uploadsDir), $options);
     $adapter = $options['adapter'];
     if ($adapter === 'LegacyLocalAttachment') {
         $options['cacheDir'] = 'resized';
         $options['resizedInd'] = '.resized-';
         $options['uploadsDir'] = 'uploads';
     }
     $result = parent::resize($path, $width, $height, $options, $htmlAttributes, $return);
     $data = compact('result', 'path', 'width', 'height', 'aspect', 'htmlAttributes', 'adapter');
     Croogo::dispatchEvent('Assets.AssetsImageHelper.resize', $this->_View, $data);
     return $result;
 }
開發者ID:maps90,項目名稱:Assets,代碼行數:20,代碼來源:AssetsImageHelper.php

示例2: holderUrl

 public static function holderUrl($url, $width, $height)
 {
     if ($url) {
         return $url;
     }
     $noImgSrc = Yii::getPathOfAlias('webroot') . '/upload/noimage/noimage-all.jpg';
     $noImg = Yii::getPathOfAlias('webroot') . "/upload/noimage/{$width}x{$height}.jpg";
     $noImageUrl = Yii::app()->baseUrl . "/upload/noimage/{$width}x{$height}.jpg";
     // resize the placeholder image file
     if (!is_file($noImg)) {
         ImageHelper::resize($noImgSrc, $noImg, $width, $height);
     }
     return $noImageUrl;
 }
開發者ID:jasonhai,項目名稱:onehome,代碼行數:14,代碼來源:InputHelper.php

示例3: getImageUrl

 public function getImageUrl($width = null, $height = null, $watermark = false)
 {
     $imgFile = $this->generateImagePath($width, $height, $watermark);
     if (!is_file($imgFile)) {
         // resize image
         $srcImg = $this->generateImagePath();
         ImageHelper::resize($srcImg, $imgFile, $width, $height, array('fit' => false));
     }
     $imgUrl = $this->generateImageUrl($width, $height, $watermark);
     return is_file($imgFile) ? $imgUrl : null;
 }
開發者ID:jasonhai,項目名稱:onehome,代碼行數:11,代碼來源:OurService.php

示例4: generateImageUrl

        if (!$width && !$height) {
            unset($paths[4]);
        }
        return implode('/', $paths);
    }
    /*
	 * Generate the image url corresponding to the dimension
	 * Need to change the code when copy to another model
	 * 
	 * @author Lam Huynh
	 */
    protected function generateImageUrl($width = null, $height = null)
    {
開發者ID:jasonhai,項目名稱:onehome,代碼行數:13,代碼來源:Banners.php

示例5: getAccountType

     }
     return '';
 }
 /**
  * @Author: ANH DUNG Sep 04, 2014
  * @Todo: display account type of user
  * @Param: $role_id of user
  */
 public static function getAccountType($role_id)
 {
     if (isset(Users::$ACCOUNT_TYPE[$role_id])) {
         return Users::$ACCOUNT_TYPE[$role_id];
開發者ID:jasonhai,項目名稱:onehome,代碼行數:12,代碼來源:Users.php


注:本文中的ImageHelper::resize方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。