[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

All in MiniExifTool

12 34

6/21/2007 6:20:00 AM

I wanted to list all the EXIF data for a photo. Is there a method for
that? Equivalent to ExifTool:

exiftool -h filepath

Thanks

--
Posted via http://www.ruby-....

4 Answers

Guest

6/21/2007 6:44:00 PM

0

12 34 schrieb:
> I wanted to list all the EXIF data for a photo. Is there a method for
> that? Equivalent to ExifTool:
>
> exiftool -h filepath
>
> Thanks

You should better ask this at rubyforge:
http://rubyforge.org/tracker/?gro...

You can use the method tags, which returns an array of all tags of the file.

Here a simple example (no HTML output but this shouldn't be difficult to
adapt):


require 'mini_exiftool'

photo = MiniExiftool.new 'file.jpg'

photo.tags.sort.each do |tag|
puts tag + ': ' + photo[tag]
end


Have a look at the API-documentation
http://miniexiftool.ruby...
and the turorial
http://miniexiftool.ruby...files/Tutorial.html

Best regards
Jan

12 34

6/21/2007 10:00:00 PM

0

Jan Friedrich wrote:
> 12 34 schrieb:
>> I wanted to list all the EXIF data for a photo. Is there a method for
>> that? Equivalent to ExifTool:
>>
>> exiftool -h filepath
>>
>> Thanks
>
> You should better ask this at rubyforge:
> http://rubyforge.org/tracker/?gro...
>
> You can use the method tags, which returns an array of all tags of the
> file.
>
> Here a simple example (no HTML output but this shouldn't be difficult to
> adapt):
>
>
> require 'mini_exiftool'
>
> photo = MiniExiftool.new 'file.jpg'
>
> photo.tags.sort.each do |tag|
> puts tag + ': ' + photo[tag]
> end
>
>
> Have a look at the API-documentation
> http://miniexiftool.ruby...
> and the turorial
> http://miniexiftool.ruby...files/Tutorial.html
>
> Best regards
> Jan

Thanks, that worked. I changed one line to

puts "#{tag}: #{photo[tag]}"

since it errored to begin with. Maybe a copying error.

I had looked at the docs but I didn't know what to look for (still
don't). I'm not confortable enough with Ruby nomenclature to be able to
figure out I need a method tags and I don't see where'd I'd find that in
the docs and know what it would do.

Thanks

--
Posted via http://www.ruby-....

12 34

6/21/2007 10:05:00 PM

0

12 34 wrote:
> Jan Friedrich wrote:
>> 12 34 schrieb:
>>> I wanted to list all the EXIF data for a photo. Is there a method for
>>> that? Equivalent to ExifTool:
>>>
>>> exiftool -h filepath
>>>
>>> Thanks

>> require 'mini_exiftool'
>>
>> photo = MiniExiftool.new 'file.jpg'
>>
>> photo.tags.sort.each do |tag|
>> puts tag + ': ' + photo[tag]
>> end
>>
>> Jan
>
Forgot to add that this method is better than the exiftool -h, because
it gives the literal method name. I was having trouble guessing at some
of them. For example to get "Camera Model Name" is "photo.model."

--
Posted via http://www.ruby-....

Guest

6/22/2007 7:25:00 PM

0

12 34 wrote:
> I changed one line to
>
> puts "#{tag}: #{photo[tag]}"
>
> since it errored to begin with. Maybe a copying error.
Sorry, my mistake.

> I had looked at the docs but I didn't know what to look for (still
> don't). I'm not confortable enough with Ruby nomenclature to be able to
> figure out I need a method tags and I don't see where'd I'd find that in
> the docs and know what it would do.
You are learning. :-)
So my mistake above has maybe a teaching effect. ;-)

Regards
Jan