/var/www/flurhymez/vendor/intervention/image/src/Intervention/Image/Commands
NameSizeModeActions
AbstractCommand.php14800644editdlrm
Argument.php57120644editdlrm
ChecksumCommand.php6090644editdlrm
CircleCommand.php9250644editdlrm
EllipseCommand.php10020644editdlrm
ExifCommand.php19640644editdlrm
IptcCommand.php31150644editdlrm
LineCommand.php9680644editdlrm
OrientateCommand.php9590644editdlrm
PolygonCommand.php12940644editdlrm
PsrResponseCommand.php12060644editdlrm
RectangleCommand.php10180644editdlrm
ResponseCommand.php5600644editdlrm
StreamCommand.php10230644editdlrm
TextCommand.php8310644editdlrm
Edit: /var/www/flurhymez/vendor/intervention/image/src/Intervention/Image/Commands/ExifCommand.php (1964B)
argument(0)->value(); // try to read exif data from image file try { if ($image->dirname && $image->basename) { $stream = $image->dirname . '/' . $image->basename; } elseif (version_compare(PHP_VERSION, '7.2.0', '>=')) { // https://www.php.net/manual/en/function.exif-read-data.php#refsect1-function.exif-read-data-changelog $stream = $image->stream()->detach(); } else { // https://bugs.php.net/bug.php?id=65187 $stream = $image->encode('data-url')->encoded; } $data = @exif_read_data($stream); if (!is_null($key) && is_array($data)) { $data = array_key_exists($key, $data) ? $data[$key] : false; } } catch (\Exception $e) { throw new NotReadableException( sprintf( "Cannot read the Exif data from the filename (%s) provided ", $image->dirname . '/' . $image->basename ), $e->getCode(), $e ); } $this->setOutput($data); return true; } }