Rework meta data display on photo page #45
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "photo-page"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Before/after screenshots attached.
Pretty!
@ -86,0 +98,4 @@
$metaData['Shutter Speed'] = $exif->shutterSpeedFraction();
if (!empty($exif->aperture))
$metaData['Aperture'] = number_format($exif->aperture, 1);
Maybe re-add the
f/
prefix?@ -86,0 +101,4 @@
$metaData['Aperture'] = number_format($exif->aperture, 1);
if (!empty($exif->focal_length))
$metaData['Focal Length'] = $exif->focal_length;
Maybe re-add the
mm
unit?@minnozz Thanks, nice catches! I've re-added the accidentally omitted bits.