Re: [nyphp-talk] Reading Photo Information

2006-12-17 Thread David Krings
Hi, yes, exif is not a standard module in many PHP configurations. I use Apachefriend's XAMPP on Windows and it was simply a matter of taking the ; out in front of the line in the php.ini. Haven't done this on Linux yet, but if the module is there it will probably as easy. David t

RE: [nyphp-talk] Reading Photo Information

2006-12-17 Thread Andy Dirnberger
: Sunday, December 17, 2006 2:22 PM To: NYPHP Talk Subject: Re: [nyphp-talk] Reading Photo Information At 8:58 AM -0800 12/16/06, Jeff Knight wrote: >http://www.nyphp.org/content/presentations/GDintro/gd27.php > It might be an obvious question to some, but according the docs, the exif_read_data

Re: [nyphp-talk] Reading Photo Information

2006-12-17 Thread tedd
At 8:58 AM -0800 12/16/06, Jeff Knight wrote: http://www.nyphp.org/content/presentations/GDintro/gd27.php It might be an obvious question to some, but according the docs, the exif_read_data() function is supposed to be available for php 4 and greater. However, I'm using php 4.3.11 and when I

Re: [nyphp-talk] Reading Photo Information

2006-12-17 Thread David Krings
Hi, I found this http://www.microimages.com/sml/GetEXIF.htm to be very helpful. The structure of the code is almost like PHP and it has the biggest collection of exif tag information that I could find...and I searched for days. Getting the exif tags out is one thing, but interpreting what

Re: [nyphp-talk] Reading Photo Information

2006-12-17 Thread Joseph Crawford
Thanks to both of you. THose will both be put at the top of my reading list ;D On 12/16/06, Jeff Knight <[EMAIL PROTECTED]> wrote: http://www.nyphp.org/content/presentations/GDintro/gd27.php On 12/16/06, Joseph Crawford <[EMAIL PROTECTED]> wrote: > Guys, > > I saw a script called Andromeda a

Re: [nyphp-talk] Reading Photo Information

2006-12-16 Thread Jeff Knight
http://www.nyphp.org/content/presentations/GDintro/gd27.php On 12/16/06, Joseph Crawford <[EMAIL PROTECTED]> wrote: Guys, I saw a script called Andromeda a while back that would allow you to read the ID3 tag data from an MP3 file. My question is can the same be done with JPG files? I am thinki

Re: [nyphp-talk] Reading Photo Information

2006-12-16 Thread Dan Cech
Joseph Crawford wrote: > I saw a script called Andromeda a while back that would allow you to read > the ID3 tag data from an MP3 file. My question is can the same be done > with > JPG files? > I am thinking i would want to read some information that is stored in the > photo such as which camera t

[nyphp-talk] Reading Photo Information

2006-12-16 Thread Joseph Crawford
Guys, I saw a script called Andromeda a while back that would allow you to read the ID3 tag data from an MP3 file. My question is can the same be done with JPG files? I am thinking i would want to read some information that is stored in the photo such as which camera took the photo, date, etc.