vote up 4 vote down star

How to tag images in the image itself in a web page?

I know Taggify, but... is there other options?

Orkut also does it to tag people faces... How is it done?

Anyone knows any public framework that is able to do it?

See a sample bellow from Taggify:

alt text

flag

45% accept rate
Interesting, I never know that was called 'tagging'. It seems like a very confusing overloaded meaning. (You can also tag images 'in the image itself' by using the EXIF/IPTC standards to add textual tags like "face" to an image.) – rcreswick Sep 24 '08 at 17:14

4 Answers

vote up 3 vote down

I know this isn't javascript but C# 3.0 has an API for doing this. The System.Windows.Media.Imaging namespace has a class called BitmapMetadata which can be used to read and write image metadata (which is stored in the image itself). Here is a method for retrieving the metadata for an image given a file path:

public static BitmapMetadata GetMetaData(string path)
{
    using (Stream s = new System.IO.FileStream(path, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite))
    {
    	var decoder = BitmapDecoder.Create(s, BitmapCreateOptions.None, BitmapCacheOption.OnDemand);
    	var frame = decoder.Frames.FirstOrDefault();
    	if (frame != null)
    	{
    		return frame.Metadata as BitmapMetadata;
    	}
    	return null;
    }
}

The BitmapMetadata class has a property for tags as well as other common image metadata. To save metadata back to the image, you can use the InPlaceBitmapMetadataWriter Class.

link|flag
Nice... but I'm kind of looking for something ready-to-use. This solution would require a lot effort in displaying the meta-data in the web page, like in the one above (Taggify Sample) – Daniel Silveira Sep 24 '08 at 17:42
vote up 2 vote down

There's a map tag in HTML that could be used in conjunction with Javascript to 'tag' different parts of an image.

You can see the details here.

link|flag
vote up 1 vote down

You can check out Image.InfoCards (IIC) at http://www.imageinfocards.com . With the IIC meta-data utilities you can add meta-data in very user-friendly groups called "cards".

The supplied utilities (including a Java applet) allow you to tag GIF's, JPEG's and PNG's without changing them visually.

IIC is presently proprietary but there are plans to make it an open protocol in Q1 2009.

The difference between IIC and others like IPTC/DIG35/DublinCore/etc is that it is much more consumer-centric and doesn't require a CS degree to understand and use it...

link|flag
vote up 1 vote down

Hi All!

I will re-activate this question and help a bit. Currently the only thing i have found about is http://www.sanisoft.com/downloads/imgnotes-0.2/example.html . A jQuery tagging implementation. If anyone knows about another way please tell us.

;)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.