Re: [IMAGING] Getting EXIF and IPTC metadata using metadata and image format neutral code

2012-07-08 Thread Farrukh Najmi
what is in http://www.iptc.org/std/IIM/4.1/specification/IIMV4.1.pdf page 24 onwards. The names in your patch differ from that list. ? On Sat, Jul 7, 2012 at 3:55 PM, Farrukh Najmi wrote: Oops. Here is the correct file this time. On 07/07/2012 01:39 AM, Damjan Jovanovic wrote: Hi Farrukh

Re: [IMAGING] Getting EXIF and IPTC metadata using metadata and image format neutral code

2012-07-07 Thread Farrukh Najmi
Oops. Here is the correct file this time. On 07/07/2012 01:39 AM, Damjan Jovanovic wrote: Hi Farrukh Your patch is just an empty file. Regards Damjan On Fri, Jul 6, 2012 at 9:23 PM, Farrukh Najmi wrote: Hi Damjan, Attached is the patch for implementing the proposed change outlined in

Re: [IMAGING] Getting EXIF and IPTC metadata using metadata and image format neutral code

2012-07-06 Thread Farrukh Najmi
Hi Damjan, Attached is the patch for implementing the proposed change outlined in bullets below. Please review and then commit if satisfied or discuss further. Thanks. On 07/06/2012 02:29 PM, Farrukh Najmi wrote: An example of a metadata property that has no IIM mapping defined is Name

Re: [IMAGING] Getting EXIF and IPTC metadata using metadata and image format neutral code

2012-07-06 Thread Farrukh Najmi
An example of a metadata property that has no IIM mapping defined is Name: Scene Code, XMP property id: Scene (page 15 of 55 in spec) On 07/06/2012 02:25 PM, Farrukh Najmi wrote: Hi Damjan, Thanks for the +1. As I started on this patch I made some observations in the IPTC-PhotoMetadata

Re: [IMAGING] Getting EXIF and IPTC metadata using metadata and image format neutral code

2012-07-06 Thread Farrukh Najmi
preference is to do what is proposed in bullets above. Comments? Thanks. On 07/05/2012 03:20 PM, Damjan Jovanovic wrote: Hi Farrukh +1 Thank you Damjan On Thu, Jul 5, 2012 at 3:34 PM, Farrukh Najmi wrote: Hi Damjan, Just looked here: http://www.iptc.org/site/Photo_Metadata/IIM/ This suggests

Re: [IMAGING] Getting EXIF and IPTC metadata using metadata and image format neutral code

2012-07-05 Thread Farrukh Najmi
working on a tedious patch to implement the propose change. On 07/05/2012 09:28 AM, Farrukh Najmi wrote: The change I proposed for IPTC is contingent upon identifying what IPTC spec we are using. I am surprised that the IPTC IIM spec which is more recent makes no reference to the IPTC Core spec

Re: [IMAGING] Getting EXIF and IPTC metadata using metadata and image format neutral code

2012-07-05 Thread Farrukh Najmi
. On 07/05/2012 09:16 AM, Damjan Jovanovic wrote: I'll have a look later and let you know. On Thu, Jul 5, 2012 at 2:52 PM, Farrukh Najmi wrote: A similar change needs to be made IMHO to org.apache.commons.imaging.formats.jpeg.iptc.IptcTypes.java so that the enum string value is XML Proper

Re: [IMAGING] Getting EXIF and IPTC metadata using metadata and image format neutral code

2012-07-05 Thread Farrukh Najmi
Id (which I incorrectly referred to as XML Property Id) as does the IPTC Core spec. Sorry for my confusion. On 07/05/2012 08:52 AM, Farrukh Najmi wrote: A similar change needs to be made IMHO to org.apache.commons.imaging.formats.jpeg.iptc.IptcTypes.java so that the enum string value is XML

Re: [IMAGING] Getting EXIF and IPTC metadata using metadata and image format neutral code

2012-07-05 Thread Farrukh Najmi
Name"), would become: COUNTRY_PRIMARY_LOCATION_NAME( 101, "Country"), I can do this patch for you once I get a +1 to do it. Until the +1 I will hold off as the work is tedious and time consuming. Please let me know. Thanks. On 07/05/2012 06:56 AM, Farru

Re: [IMAGING] Getting EXIF and IPTC metadata using metadata and image format neutral code

2012-07-05 Thread Farrukh Najmi
Tue, Jul 3, 2012 at 10:16 PM, Farrukh Najmi wrote: +1 on having the methods: Imaging.getExifMetadata() Imaging.getIptcMetadata() Imaging.getXmpMetadata() It is is a good idea so one can access metadata-format-specific metadata in a metadata-format-specific way and handling all special needs of

Re: [IMAGING] Getting EXIF and IPTC metadata using metadata and image format neutral code

2012-07-03 Thread Farrukh Najmi
9:19 PM, Farrukh Najmi wrote: Updated proposed patch with following new changes: Add getValue() method to nested class IImageMetadataItem. These return the value of the item as an Object allowing for values of various types to be returned. On 07/03/2012 11:01 AM, Farrukh Najmi wrote: Moving

Re: [IMAGING] Getting EXIF and IPTC metadata using metadata and image format neutral code

2012-07-03 Thread Farrukh Najmi
Updated proposed patch with following new changes: * Add getValue() method to nested class IImageMetadataItem. These return the value of the item as an Object allowing for values of various types to be returned. On 07/03/2012 11:01 AM, Farrukh Najmi wrote: Moving this thread to dev

Re: [IMAGING] TagInfo and distinction between TagName and FieldName

2012-07-03 Thread Farrukh Najmi
On 07/03/2012 01:56 PM, Damjan Jovanovic wrote: On Tue, Jul 3, 2012 at 3:48 PM, Farrukh Najmi wrote: On 07/02/2012 11:22 PM, Damjan Jovanovic wrote: On Mon, Jul 2, 2012 at 11:33 PM, Farrukh Najmi wrote: Hi Guys, I am new to the project so forgive me if the answer is obvious... I am

Re: [IMAGING] Getting EXIF and IPTC metadata using metadata and image format neutral code

2012-07-03 Thread Farrukh Najmi
ork to create this project and for considering this proposal. On 07/02/2012 07:12 PM, Farrukh Najmi wrote: Here is a proposed change to the API that would help my scenario... Modify the org.apache.commons.imaging.common.ImageMetadata$Item class to have the following additional m

Re: [IMAGING] TagInfo and distinction between TagName and FieldName

2012-07-03 Thread Farrukh Najmi
On 07/02/2012 11:22 PM, Damjan Jovanovic wrote: On Mon, Jul 2, 2012 at 11:33 PM, Farrukh Najmi wrote: Hi Guys, I am new to the project so forgive me if the answer is obvious... I am working with latest svn bits and the org.apache.commons.imaging.formats.tiff.taginfos.TagInfo class seems to

[IMAGING] TagInfo and distinction between TagName and FieldName

2012-07-02 Thread Farrukh Najmi
Hi Guys, I am new to the project so forgive me if the answer is obvious... I am working with latest svn bits and the org.apache.commons.imaging.formats.tiff.taginfos.TagInfo class seems to only support the TagName column of Table 3 TIFF Rev. 6.0 Attribute Information Used in Exif in the Exif

Re: [IMAGING]/[SANSELAN] JIRA error

2012-06-28 Thread Farrukh Najmi
Guys, In case it help... I filed issues in the SANSELAN Jira because that was the one linked from the project summary page. Had the project summary page had the correct link then the issues would have been filed in the correct JIRA. On 06/28/2012 03:06 PM, sebb wrote: in the S I decided t