EXIF: Missing ISO EXIF: Missing ISO
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

EXIF: Missing ISO

Started by WSLam, April 20, 2004, 12:47:27 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

WSLam

Aperture, Shutter etc all seems to be displaying correctly, but no ISO is displayed. can someone help?

Sample:
http://photos.lam.ws/displayimage.php?album=159&pos=6

Thanks

WSLam

WSLam

can someone please help?

ws

Tarique Sani

I have added the support but it will not be in 1.3 fianl release so here it goes.... hope you are proficient with PHP else ask someone who is to do it for you

Open file lang/english.php (or your fav language) to the lang_picinfo array add   'ISO'=>'ISO',

Open file include/exif_php.inc.php, after lines
if (isset($exif['focalLength'])){
                $exifParsed['FocalLength'] = $exif['focalLength'];
        }

insert lines

        if (isset($exif['isoEquiv'])){
                $exifParsed['ISO'] = $exif['isoEquiv'];
        }


Open file displayimage.php  after line
if (isset($exif['Aperture'])) $info[$lang_picinfo['Aperture']] = $exif['Aperture'];
insert
if (isset($exif['ISO'])) $info[$lang_picinfo['ISO']] = $exif['ISO'];

All new pictures will now show ISO information - if you want to have ISO information for the older pictures - just empty the exif table, when the EXIF info is recreated it will have ISO field

SANIsoft PHP applications for E Biz

Joachim Müller

not all exif data can be displayed. I haven't seen anyone who managed to display ISO in his exif data. Maybe Tarique could help...

GauGau

WSLam

Works perfectly Tarique! THANK YOU!
See the modified script here:
http://photos.lam.ws/displayimage.php?album=159&pos=6

ws