当前位置: 首页>>代码示例>>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;未经允许,请勿转载。