This is a discussion on Reading and writing EXIF meta data from jpg/jpeg,tiff images within the C# Programming forums, part of the Software Development category; Reading and Writing EXIF Metadata Goals: This project is used to read and write metadata for Tiff, Jpeg and NEF ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Reading and Writing EXIF Metadata Goals: This project is used to read and write metadata for Tiff, Jpeg and NEF Images. Please find the ExifExtracter class attached with this post and add it to ur windows application project. Code to Read the EXIF medatdata: Mymetadata.EXIF.EXIFextractor er2 = new Mymetadata.EXIF.EXIFextractor(imagefilePath, "", ""); foreach (System.Web.UI.Pair s in er2) { MessageBox.Show(s.First + " : " + s.Second); } Code to write the EXIF medatdata: This is the code for writing image titile property: if (er2["Image Title"] == null) er2.setTag(0x320, "http://www.test.com"); Last edited by oxygen : 07-26-2007 at 07:37 AM. |
| Sponsored Links |
![]() |
| Thread Tools | |
| Display Modes | |
| |
LinkBacks (?)
LinkBack to this Thread: http://www.discussweb.com/c-programming/1722-reading-writing-exif-meta-data-jpg-jpeg-tiff-images.html | |||
| Posted By | For | Type | Date |
| C# Programming [Archive] - DiscussWeb IT Community - Technical Support and Technology Discussions | This thread | Refback | 03-04-2008 03:38 AM |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Extract IPTC Metadata from jpeg and tiff image formats | Balasubramanian.S | C# Programming | 26 | 11-13-2008 01:19 PM |
| Applying ICC profiles to a TIFF,JPEG files using C# | oxygen | C# Programming | 1 | 02-28-2008 11:42 PM |
| Reading IPTC data from Nikon camera RAW images,JPEG,TIFF files using Adobe dll in C# | oxygen | C# Programming | 1 | 02-28-2008 11:33 PM |
| Converting Nikon camera RAW images to JPEG,TIFF files using Adobe dll in C#.NET | oxygen | C# Programming | 5 | 08-16-2007 03:26 AM |
| Reading WMV file meta data in .Net | oxygen | C# Programming | 0 | 07-15-2007 11:18 PM |