本文整理汇总了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";
}
}
示例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');
}