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

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

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.  ;)