Sorry, no results were found for this search.

You are viewing the documentation for Intervention Image v2. 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