rotate — Rotate an image

Description

public Intervention\Image\Image rotate(float $angle, [string $bgcolor])

Rotate the current image counter-clockwise by a given angle. Optionally define a background color for the uncovered zone after the rotation.

Parameters

angle

The rotation angle in degrees to rotate the image counter-clockwise.

bgcolor (optional)

A background color for the uncovered zone after the rotation. The background color can be passed in different color formats. Default: #ffffff, transparent if supported by the output format

Return Values

Instance of Intervention\Image\Image

Examples

  1. // create Image from file
  2. $img = Image::make('public/foo.jpg');
  3. // rotate image 45 degrees clockwise
  4. $img->rotate(-45);

See also