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