Class

Imagine\Gmagick\Effects

class Effects implements EffectsInterface

Effects implementation using the Gmagick PHP extension

Methods

__construct(Gmagick $gmagick)

EffectsInterface gamma(float $correction)

Apply gamma correction

EffectsInterface negative()

Invert the colors of the image

EffectsInterface grayscale()

Grayscale the image

EffectsInterface colorize(ColorInterface $color)

Colorize the image

EffectsInterface sharpen()

Sharpens the image

EffectsInterface blur(float|int $sigma = 1)

Blur the image

Details

at line 26
public __construct(Gmagick $gmagick)

Parameters

Gmagick $gmagick

at line 34
public EffectsInterface gamma(float $correction)

Apply gamma correction

Parameters

float $correction

Return Value

EffectsInterface

Exceptions

RuntimeException

at line 48
public EffectsInterface negative()

Invert the colors of the image

Return Value

EffectsInterface

Exceptions

RuntimeException

at line 66
public EffectsInterface grayscale()

Grayscale the image

Return Value

EffectsInterface

Exceptions

RuntimeException

at line 80
public EffectsInterface colorize(ColorInterface $color)

Colorize the image

Parameters

ColorInterface $color

Return Value

EffectsInterface

Exceptions

RuntimeException

at line 88
public EffectsInterface sharpen()

Sharpens the image

Return Value

EffectsInterface

Exceptions

RuntimeException

at line 96
public EffectsInterface blur(float|int $sigma = 1)

Blur the image

Parameters

float|int $sigma

Return Value

EffectsInterface

Exceptions

RuntimeException