Coppermine 1.3 / EXIF / ShutterSpeedValue Coppermine 1.3 / EXIF / ShutterSpeedValue
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Coppermine 1.3 / EXIF / ShutterSpeedValue

Started by somnium, September 28, 2005, 12:21:31 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

somnium

Him.

Im Using a Minolta Dimage 5 and the only way to show the Shutter Speed is the "Sutter Speed Value" (hex 0x9201). Is there any possibility to show this value in the Gallery?
I've searched the Forum the last hours and found a "ISO Hack" Guide which helped me to fix the "Missing ISO" bug in german language.. I tried to edit the files in th same way to find a way to show the shutter speed.. and found a "TAG_SHUTTERSPEED:" in the exifreader.inc.php file.

case TAG_SHUTTERSPEED:
                    // More complicated way of expressing exposure time, so only use
                    // this value if we don't already have it from somewhere else.
                    if ($this->ImageInfo[TAG_EXPOSURETIME] == 0){
                        $sp = $this->ConvertAnyFormat($ValuePtr, $Format);
                        $this->ImageInfo[TAG_SHUTTERSPEED] = (1/exp($sp[0]*log(2)));
                    }
                    break;



But... i have no clue how to bring this in the Gallery Page..


Thank you for any help.  ;)