marco-urban
Joined: 7 Jul 2008
Posts: 4
Berlin, Germany
EXIF data is a nice thing, o.k., but please don ´t forget to give your admins an opportunity to work with their IPTC data. All pictures of professional photographers are with IPTC data, because it is the international standard for picture databases.
It would be a very good to have an opportunity to import this data to the "titel" and "text" field. It would be also much easier to put the text to the pictures on my computer with my software, because I can edit and copy the text much easier, than to do this online at iv.
You don ´t need to take all IPTC-Fields, for the beginning "headline" and "discription" (for import to titel & text), would be o.k., in the next step you could take the name of the photographer, copyright data, place and date.
I ´m sure that many professionals would like this feature. And we need your software for our homepages and portfolios!
There was a former version, were it was possible to see some IPTC data in the Image info at the admin, but it ´s no more there. Why?
If I can help you in this - even when my english is not perfect - than let me know.
All the best from Berlin and thanks for a so far very good product.
Marco


Re: IPTC is important!
User avatar
Imagevue Wizard
Joined: 30 Sep 2006
Posts: 7290
marco-urban wrote
EXIF data is a nice thing, o.k., but please don ´t forget to give your admins an opportunity to work with their IPTC data...


Thanks for the tip - We will look into it. Just for your info, the IPTC is a separate PHP module, so it is a separate task altogether. Also need to check that standard PHP servers support extracting IPTC values.

_________________
Karl / mjau-mjau

Image
Image
Image
Image

www.imagevuex.com
www.mjau-mjau.com
www.photogallerylinks.com


Re: EXIF suggestions please post here
Jesse
Experienced
Joined: 14 Dec 2008
Posts: 52
Los Angeles
EXIF data is mildly interesting but very distracting.

How can I disable the display?

On that note, would also like to disable the date and time when hovering over an image.


Re: EXIF suggestions please post here
User avatar
Imagevue Wizard
Joined: 30 Sep 2006
Posts: 7290
Jesse wrote
EXIF data is mildly interesting but very distracting.

How can I disable the display?

EXIF is by default set in the text2 module. To disable it, go admin -> config -> text.text2.enabled - Set it to false.

Jesse wrote
On that note, would also like to disable the date and time when hovering over an image.

Date and time would be part of the same EXIF data as specified above ... Some photos have a lot of data, while some images only have date and time.

_________________
Karl / mjau-mjau

Image
Image
Image
Image

www.imagevuex.com
www.mjau-mjau.com
www.photogallerylinks.com


EXIF value [doc-name]
camherd
Joined: 16 Feb 2009
Posts: 1
Hi there,

I think that the question below from Wonga wasn't covered in your answers, nor in your last update. (I have the same problem)

On top of that, I would like to ask if it would be possible to manage different Exifs with each Text1, text2 and text3.

This would allow to use i.e. "Ownername" in Text1, "Filename" in Text2 and the a few others informations in Text 3.

Thanks in advance for your answer.

wonga wrote
Hello
Additionally to the ImageDescription (description for the image) I would like to have DocumentName (title for the image) available in the ivExifParser.class.php

something like this:

Code
...
'ImageTitle',
...

   /**
    * Format ImageTitle field
    *
    * @param array $filtered
    * @param array $exifData
    */
   function ImageTitle(&$filtered, $exifData)
   {
      if (isset($exifData['DocumentName'])) {
         $imagetitle= trim($exifData['DocumentName']);
         if (!empty($imagetitle)) {
            $filtered['Image Title'] = $imagetitle;
         }
      }
   }


Since I have copied the IPTC value [ip-object] to the EXIF value [doc-name] this would really be icing on the cake of V2

Thanks
wonga


Re: EXIF suggestions please post here
User avatar
Imagevue Wizard
Joined: 30 Sep 2006
Posts: 7290
We will have to look into that ... That would require 1 EXIF configuration file for each text module.

_________________
Karl / mjau-mjau

Image
Image
Image
Image

www.imagevuex.com
www.mjau-mjau.com
www.photogallerylinks.com


EXIF Lens Info
secerator
Joined: 17 Mar 2009
Posts: 18
Is there a way to post the EXIF info about the lens type?


Re: EXIF suggestions please post here
winph
Experienced
Joined: 19 Jul 2008
Posts: 127
how do i format the date & time original? i would like to format to 8/4/2009 1:10 PM?


Re: EXIF Lens Info
User avatar
Imagevue Hitman
Joined: 2 May 2006
Posts: 2857
secerator wrote
Is there a way to post the EXIF info about the lens type?


Check imagevue/include/ivExifParser.php, you will see a list of supported attributes, just uncomment the ones you need.

_________________
Nick // Imagevue

Image
Image
Image
Image

dear-apple.com jaconda.im indexr gridpapr


Re: EXIF suggestions please post here
User avatar
Imagevue Hitman
Joined: 2 May 2006
Posts: 2857
winph wrote
how do i format the date & time original? i would like to format to 8/4/2009 1:10 PM?


Err.. sorry. Right now they being returned as-is, but we'll add some formatting in the next version.

_________________
Nick // Imagevue

Image
Image
Image
Image

dear-apple.com jaconda.im indexr gridpapr


REMOVE EXIF
mikeletron
Joined: 3 Feb 2010
Posts: 7
Italy
I'm a painter and I'm using iv to display paintings ( www.emmekappati.com/iv) and I really DON'T want Exif info on a painting as it has no meaning. The problem is that I really can't find nothing to eliminate EXIF in the Config of the Admin Panel, ok I'm new to iv but I spent several hours trying to solve this problem, please help me!


Re: EXIF suggestions please post here
cybercap
Joined: 4 Sep 2008
Posts: 15
hello

is there any way to change the exif line title from english to French, that is instead of saying
Aperture : f/6.3
it would say:
Ouverture : f/6.3 (which is the french for apeture)

shutterspeed would be replaced by "vitesse" and so on

thanks

EDIT: ok found it, in the ivExifParser.class.php file , just edit the line:
$filtered['Exposure'] = sprintf('%s (%01.3f sec)',

and replace 'Exposure' byt 'whateveryouwantdisplayed'

and so on for other lines


Re: REMOVE EXIF
User avatar
Imagevue Wizard
Joined: 30 Sep 2006
Posts: 7290
mikeletron wrote
I'm a painter and I'm using iv to display paintings ( www.emmekappati.com/iv) and I really DON'T want Exif info on a painting as it has no meaning. The problem is that I really can't find nothing to eliminate EXIF in the Config of the Admin Panel, ok I'm new to iv but I spent several hours trying to solve this problem, please help me!

Sorry, must have missed this question, but here is the answer: The EXIF text you see is generally just a TEXT module. You can go to admin -> settings -> text.text2.enabled ... Uncheck this and save! That will disable the TEXT2 module, which by default is set to display EXIF data on rollover.

_________________
Karl / mjau-mjau

Image
Image
Image
Image

www.imagevuex.com
www.mjau-mjau.com
www.photogallerylinks.com


Re: EXIF suggestions please post here
vboa68
Joined: 10 Jan 2012
Posts: 5
Hello

Just one desiderata from my side: lens type used.
Both my tools Canon DPP and Lightroom show the type of lens used...Example: Canon 70-200 f.2,8 IS II L
I think could be useful for everybody see with which lens the photo was taken..
thanks
Vincenzo


Re: EXIF suggestions please post here
User avatar
Imagevue Hitman
Joined: 2 May 2006
Posts: 2857
Hi Vincenzo,

Could you please provide a picture or two for us, we will try to extract the lens. The problem is, those specs are bit vague, so it's hard to do everything nicely.

_________________
Nick // Imagevue

Image
Image
Image
Image

dear-apple.com jaconda.im indexr gridpapr


cron
 
Imagevue Forums HomeForum  View topic - EXIF suggestions please post here42 posts