Image::flip

Mirror the current image vertically or horizontally

3M Downloads / Month

Open Source MIT License

You are viewing the documentation for Intervention Image 2, this version has reached end of life (EOL). Please consider upgrading to version 3.

public Intervention\Image\Image flip([string $mode])

Mirror the current image horizontally or vertically by specifying the mode.

Parameters

mode (optional)

Specify the mode the image will be flipped. You can set h for horizontal (default) or v for vertical flip.

Return Values

Instance of Intervention\Image\Image

Examples

// create Image from file
$img = Image::make('public/foo.jpg');

// flip image vertically
$img->flip('v');

See also

Edit