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


PHP JImage::filter方法代码示例

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


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

示例1: createGrayscaleThumb

 public static function createGrayscaleThumb($path, $type = 'grayscale')
 {
     $myImage = new JImage();
     $myImage->loadFile(JPATH_CACHE . DS . $path);
     if ($myImage->isLoaded()) {
         // $filename = end(explode('/',$path));
         $filename = JFile::getName($path);
         $newfilename = 'gr_' . JFile::makeSafe($filename);
         $fileExists = JFile::exists(JPATH_CACHE . '/' . $newfilename);
         if (!$fileExists) {
             //require_once JPATH_LIBRARIES . DS . 'joomla/image/filters/'.$type.'.php';
             $libfile = JPATH_LIBRARIES . DS . 'joomla/image/filter' . (JVERSION <= 3 ? 's' : '') . '/' . $type . '.php';
             if (JFile::exists($libfile)) {
                 require_once $libfile;
                 $filteredImage = $myImage->filter($type);
                 $filteredImage->toFile(JPATH_CACHE . '/' . $newfilename);
             }
         }
         return $newfilename;
     } else {
         return "My file is not loaded";
     }
 }
开发者ID:quyip8818,项目名称:joomla,代码行数:23,代码来源:helper.php

示例2: testFilterWithoutLoadedImage

 /**
  * Test the JImage::filter method without a loaded image.
  *
  * @return  void
  *
  * @expectedException  LogicException
  * @since   11.3
  */
 public function testFilterWithoutLoadedImage()
 {
     // Create a new JImage object without loading an image.
     $image = new JImage();
     $image->filter('negate');
 }
开发者ID:rvsjoen,项目名称:joomla-platform,代码行数:14,代码来源:JImageTest.php


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