exif — Reads Exif data from image

Description

public Intervention\Image\Image exif([string $key])

Read Exif meta data from current image.

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

Parameters

key (optional)

Optionally index key to retrieve only particular data. By default all data available will be loaded.

Return Values

Associative array of all Exif data available or mixed data for particular value. If no meta data can be found, method will return NULL.

Examples

  1. // read all existing data into an array
  2. $data = Image::make('public/foo.jpg')->exif();
  3. // read model of the camera
  4. $name = Image::make('public/foo.jpg')->exif('Model');