File::getExifData()
\nn\t3::File()->getExifData($filename = '');
Get ALL EXIF data for file.
\nn\t3::File()->getExif( 'yellowstone.jpg' );
Copied!
| @return array
Source Code
public function getExifData($filename = '')
{
return array_merge(
$this->getImageSize($filename),
$this->getImageData($filename),
$this->getLocationData($filename)
);
}
Copied!