orientate — adjusts image orientation automatically

Description

public Intervention\Image\Image orientate()

This method reads the EXIF image profile setting ‘Orientation’ and performs a rotation on the image to display the image correctly. Image object must be instantiated from file path to read the EXIF data correctly.

**Note: PHP must be compiled in with --enable-exif to use this method. Windows users must also have the mbstring extension enabled. **

Parameters

None

Return Values

Instance of Intervention\Image\Image

Examples

  1. // instantiate image with auto-orientation
  2. $img = Image::make('foo.jpg')->orientate();

See also