当前位置: 首页>>代码示例>>PHP>>正文


PHP photo::imageCrop方法代码示例

本文整理汇总了PHP中photo::imageCrop方法的典型用法代码示例。如果您正苦于以下问题:PHP photo::imageCrop方法的具体用法?PHP photo::imageCrop怎么用?PHP photo::imageCrop使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在photo的用法示例。


在下文中一共展示了photo::imageCrop方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: add

 private function add($fill, $doRedirect = false)
 {
     $fill['picture'] = photo::UploadImage($_FILES);
     if (isset($_POST['x1']) && isset($_POST['y1']) && isset($_POST['w1']) && isset($_POST['h1'])) {
         $data = array('x1' => $_POST['x1'], 'y1' => $_POST['y1'], 'w1' => $_POST['w1'], 'h1' => $_POST['h1']);
         unset($_POST['x1'], $_POST['y1'], $_POST['w1'], $_POST['h1']);
         photo::imageCrop($_POST['picture'], $data, '200x200');
     }
     if (isset($_POST['x2']) && isset($_POST['y2']) && isset($_POST['w2']) && isset($_POST['h2'])) {
         $data = array('x1' => $_POST['x2'], 'y1' => $_POST['y2'], 'w1' => $_POST['w2'], 'h1' => $_POST['h2']);
         unset($_POST['x2'], $_POST['y2'], $_POST['w2'], $_POST['h2']);
         photo::imageCrop($_POST['picture'], $data, '200x140');
     }
     if (isset($_POST['width'])) {
         unset($_POST['width']);
     }
     if (isset($_POST['height'])) {
         unset($_POST['height']);
     }
     if (empty($fill["title"])) {
         $fill["title"] = time();
     }
     $fill['type'] = 'news';
     // echo '<pre>'.print_r($fill,1).'</pre>'; exit;
     if (!empty($fill["slug"])) {
         $slug = core::generateSlug($fill["slug"]);
     } else {
         if (!empty($fill["title"])) {
             $slug = core::generateSlug($fill["title"]);
         }
     }
     $fill["slug"] = $slug;
     $savedPost = photo::writePost($fill);
     $size = getimagesize(CONTENT_PATH . '/photo/resized/' . $fill['picture']);
     $fill['width'] = $size[0];
     $fill['height'] = $size[1];
     return $savedPost;
 }
开发者ID:ygres,项目名称:sblog,代码行数:38,代码来源:index.php


注:本文中的photo::imageCrop方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。