Author Topic: At me a question how to allocate from EXIF only model of the camera?  (Read 4010 times)

0 Members and 1 Guest are viewing this topic.

Offline Lesik

  • Newbie
  • *
  • Posts: 38
    • View Profile
Hello. At me a question how to allocate from EXIF only model of the camera? And to deduce it in details.html

Rembrandt

  • Guest
Re: At me a question how to allocate from EXIF only model of the camera?
« Reply #1 on: September 07, 2009, 05:38:05 PM »
Hi!
Hello. At me a question how to allocate from EXIF only model of the camera? And to deduce it in details.html

search in includes/functions.php

  $exif_match
['Make'] = "make";
  
$exif_match['Model'] = "model";
  
$exif_match['DateTimeOriginal'] = "datetime";
  
$exif_match['ISOSpeedRatings'] = "isospeed";
  
$exif_match['ExposureTime'] = "exposure";
  
$exif_match['FNumber'] = "aperture";
  
$exif_match['FocalLength'] = "focallen";


and comment out the line with //
example:

//  $exif_match['Make'] = "make";
  
$exif_match['Model'] = "model";
//  $exif_match['DateTimeOriginal'] = "datetime";
//  $exif_match['ISOSpeedRatings'] = "isospeed";
//  $exif_match['ExposureTime'] = "exposure";
//  $exif_match['FNumber'] = "aperture";
//  $exif_match['FocalLength'] = "focallen";


mfg Andi

Offline Lesik

  • Newbie
  • *
  • Posts: 38
    • View Profile
Re: At me a question how to allocate from EXIF only model of the camera?
« Reply #2 on: September 08, 2009, 08:21:12 AM »
Hi Rembrandt.
Not absolutely that, I want that and EXIF was deduced completely + in addition to deduce model of the chamber in other place, type {lang_model} = Canon PowerShot G10
...{exif_value} same massive here is how from it to allocate only model?
----------------------


Itself has made, the theme can be removed

« Last Edit: September 09, 2009, 11:16:01 AM by Lesik »