flip — Mirror an image

Description

public Intervention\Image\Image flip([mixed $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

  1. // create Image from file
  2. $img = Image::make('public/foo.jpg');
  3. // flip image horizontally
  4. $img->flip('h');

See also