Re: [PHP] A complete EXIF extension?

2003-09-10 Thread Marek Kilimajer
Try http://www.phpclasses.org/browse.html/package/1042.html Greg Militello wrote: Hey all, I've been dealing with EXIF data in images for a while now. Reading in PHP is available, however editing, or creating EXIF entries doesn't exist. I am going to work on a set of classes to

Re: [PHP] A complete EXIF extension?

2003-09-10 Thread Greg Militello
Currently the phpExifRW, the classes you mentioned which are from http://www.sanisoft.com/phpexifrw/ has incomplete write functions. In fact the comments included in the code include text like This functiion writes back the modifed exif data into the imageinfo array - INCOMPLETE -exif.inc:1488

Re: [PHP] A complete EXIF extension?

2003-09-10 Thread Greg Militello
Also phpExifRW is not able to parse the EXIF format of all the different camera types I need it to. -Greg Marek Kilimajer wrote: Try http://www.phpclasses.org/browse.html/package/1042.html Greg Militello wrote: Hey all, I've been dealing with EXIF data in images for a while now. Reading

Re: [PHP] A complete EXIF extension?

2003-09-10 Thread Marek Kilimajer
So go ahead and add the functionality. You have a code you can start with. I don't believe php version will be a lot slower then its c equivalent, and you are not c coder anyway. Besides this gives you more freedom to choose a host, as most hosts don't have exif extension enabled. Greg

[PHP] A complete EXIF extension?

2003-09-09 Thread Greg Militello
Hey all, I've been dealing with EXIF data in images for a while now. Reading in PHP is available, however editing, or creating EXIF entries doesn't exist. I am going to work on a set of classes to interphase with libexif a C package at: http://sourceforge.net/projects/libexif/ The