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 |
|
#1
| |||
| |||
| 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. |
|
#2
| |||
| |||
| the attached file is empty !! |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Extract IPTC Metadata from jpeg and tiff image formats | Balasubramanian.S | C# Programming | 27 | 08-13-2009 07:39 AM |
| 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 |
Our Partners |