[prev in list] [next in list] [prev in thread] [next in thread] 

List:       ansel
Subject:    [ansel] Patch to lib/Exif.php
From:       "Heath S. Hendrickson" <heath () outerspaceconsultants ! com>
Date:       2004-05-12 2:02:32
Message-ID: 40A185B8.9000303 () outerspaceconsultants ! com
[Download RAW message or body]

I made a simple modification to lib/Exif.php so that it displays "0 EV" 
when the exposure bias value is any fraction with a numerator of 0.  
Before it would just display it as "0/32 EV" (in the case of my camera, 
anyway).

h

["Exif.php.patch_fixExposureBiasValue" (text/plain)]

Index: lib/Exif.php
===================================================================
RCS file: /usr/local/horde/cvs/ansel/lib/Exif.php,v
retrieving revision 1.13
diff -u -r1.13 Exif.php
--- lib/Exif.php	31 Mar 2004 20:17:29 -0000	1.13
+++ lib/Exif.php	12 May 2004 02:01:33 -0000
@@ -179,7 +179,11 @@
         case 'ExposureBiasValue':
             if (strpos($data, '/') !== false) {
                 list($n, $d) = explode('/', $data, 2);
-                return $data . ' EV';
+                if ($n == 0) {
+                    return '0 EV';
+                } else {
+                    return $data . ' EV';
+                }
             }
             break;
 


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic