Image::flip
Mirror the current image vertically or horizontally
2.9M Downloads / Month
Open Source MIT License
2.9M Downloads / Month
Open Source MIT License
public Intervention\Image\Image flip([string $mode])
Mirror the current image horizontally or vertically by specifying the mode.
Specify the mode the image will be flipped. You can set h
for horizontal (default) or v
for vertical flip.
Instance of Intervention\Image\Image
// create Image from file
$img = Image::make('public/foo.jpg');
// flip image vertically
$img->flip('v');