本文整理汇总了PHP中Intervention\Image\Image::brightness方法的典型用法代码示例。如果您正苦于以下问题:PHP Image::brightness方法的具体用法?PHP Image::brightness怎么用?PHP Image::brightness使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Intervention\Image\Image
的用法示例。
在下文中一共展示了Image::brightness方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: runSepiaFilter
/**
* Perform sepia manipulation.
* @param Image $image The source image.
* @return Image The manipulated image.
*/
public function runSepiaFilter(Image $image)
{
$image->greyscale();
$image->brightness(-10);
$image->contrast(10);
$image->colorize(38, 27, 12);
$image->brightness(-10);
$image->contrast(10);
return $image;
}
示例2: run
public function run(Image $image)
{
$brightness = $this->getBrightness();
if ($brightness !== null) {
$image->brightness($brightness);
}
return $image;
}
示例3: run
/**
* Perform brightness image manipulation.
* @param Request $request The request object.
* @param Image $image The source image.
* @return Image The manipulated image.
*/
public function run(Request $request, Image $image)
{
$brightness = $this->getBrightness($request->get('bri'));
if ($brightness) {
$image->brightness($brightness);
}
return $image;
}
示例4: adjustment
protected function adjustment()
{
if ($this->gamma) {
$this->image->gamma($this->gamma);
}
if ($this->contrast) {
$this->image->contrast($this->contrast);
}
if ($this->brightness) {
$this->image->brightness($this->brightness);
}
if ($this->sharpen) {
$this->image->sharpen($this->sharpen);
}
}
示例5: handle
/**
* Handle the image manipulation request
* @param \Intervention\Image\Image $image
* @param array $options
* @return \Intervention\Image\Image
*/
public function handle($image, $options)
{
$options = array_merge($this->defaults, $options);
return $image->brightness($options['level']);
}
示例6: applyFilter
public function applyFilter(Image $image)
{
return $image->brightness($this->level);
}
示例7: brightness
/**
* Changes the brightness of the current image
*
* @param int $level [description]
* @return \Intervention\Image\Image
* @static
*/
public static function brightness($level)
{
return \Intervention\Image\Image::brightness($level);
}