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


PHP image::width方法代碼示例

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


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

示例1: __construct

 public function __construct($path)
 {
     $this->image = Image::make($path);
     $this->name = $this->getUniqueName();
     $this->isLandscape = $this->image->width() > $this->image->height();
     // default 2:3 ratio
     $this->ratioLarge = 3;
     $this->ratioSmall = 2;
 }
開發者ID:john-ko,項目名稱:sharonypark,代碼行數:9,代碼來源:ImageHandler.php

示例2: image

         if ($_REQUEST['uploadType'] == 'image') {
             $img = new image();
             $img->createfromfile($target);
             if ($img->width() > $img->height()) {
                 $left = ($img->width() - $img->height()) / 2;
                 $img->cut($left, 0, $img->height(), $img->height());
             } else {
                 $top = ($img->height() - $img->width()) / 2;
                 $img->cut(0, $top, $img->width(), $img->width());
             }
             $img->resize(64, 64, true);
             $thumbtarget = getThumbUrl($target);
             $img->save($thumbtarget, 90);
             $img2 = new image();
             $img2->createfromfile($target);
             if ($img2->width() > 640 || $img2->height() > 640) {
                 $img2->resize(540, 540, true);
             }
             $midsizetarget = getMidsizeUrl($target);
             $img2->save($midsizetarget, 90);
             $image['url'] = $target;
             $image['dateCreated'] = date("Y-m-d H:i:s");
             $image['id'] = $waka['maxImageId'];
             $image['name'] = basename($_FILES['uploaded']['name']);
             $item['images'][count($item['images'])] = $image;
             $item['dateImagesTouched'] = date("Y-m-d H:i:s");
         }
     }
 } else {
     echo "Sorry, there was a problem uploading your file.";
 }
開發者ID:Tschaul,項目名稱:waka,代碼行數:31,代碼來源:query.php


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