Dear Phil thank you for your fast response,
I am using Thomas Barregren's extraction code
javax.imageio.ImageReader; class to read the metadata from the image
public Node readNativeMetadata() throws IOException
{
ImageReader reader;
IIOMetadata metadata = reader.getImageMetadata(0);
if(metadata == null)
return null;
return metadata.getAsTree(metadata.getNativeMetadataFormatName());
}
the above IIOMetadata contains marker sequences as an arraylist
looking forward to your response,
vik