EXIF: Missing ISO EXIF: Missing ISO
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

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