IT Community - Software Programming, Web Development and Technical Support

Extract IPTC Metadata from jpeg and tiff image formats

This is a discussion on Extract IPTC Metadata from jpeg and tiff image formats within the C# Programming forums, part of the Software Development category; Hi Karpagarajan, I checked the samples that you have sent yesterday. I already have this sample. This sample is used ...


Go Back   IT Community - Software Programming, Web Development and Technical Support > Software Development > C# Programming

Register FAQ Members List Calendar Mark Forums Read

Reply
 
Thread Tools Display Modes
  #11  
Old 04-29-2007, 10:31 PM
Balasubramanian.S Balasubramanian.S is offline
D-Web Sr.Programmer
 
Join Date: Mar 2007
Posts: 182
Balasubramanian.S is on a distinguished road
Default Re: Extract Meta Data from images

Hi Karpagarajan,

I checked the samples that you have sent yesterday. I already have this sample. This sample is used to extract the IPTC MetaData from jpg file only. I want to extract, edit and save the IPTC Metadata for JPG, and TIFF file.
I have no samples in C# to edit the IPTC MetaData. Please give some idea.

Thanks,

S.Balasubramanian.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12  
Old 04-30-2007, 12:33 AM
Karpagarajan Karpagarajan is offline
D-Web Analyst
 
Join Date: Mar 2007
Posts: 301
Karpagarajan is on a distinguished road
Thumbs up Re: Extract Meta Data from images

Yes Balasubramanian,

I think we cannot edit the IPTC datas on image file. We can only extract the datas and use it for other purposes. I dont think, but it can be available on the net.

When going with the thrid party components(Extractor), I dont think it is not that much easier to do all the image operations. You can just get the File stream structure of the JPEG file (it will be available on the net for Joint Photographic Experts Group). And use that Stream object for extracting / editing the meta data information.

I will also search or do some R & D works regarding this and let u know before this evening.

thanks
__________________
Karpagarajan. R
Necessity is the mother of invention

Last edited by Karpagarajan : 04-30-2007 at 12:37 AM.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13  
Old 04-30-2007, 09:42 AM
Karpagarajan Karpagarajan is offline
D-Web Analyst
 
Join Date: Mar 2007
Posts: 301
Karpagarajan is on a distinguished road
Thumbs up Re: Extract Meta Data from images

Hi Balasubramanian,

I have given the sample R & D works i had done in IPTC. Just include this dll and use the namespace as in the following manner.(I just given the vb code)
Dim a As New IPTCObj
Dim b As String
Call a.GetIPTCData(Text1.Text, b)
MsgBox b
I just wrote the function for getting the IPTC data. It is possible to write the IPTC data onto the image. Hope it will be helpful for you. And if you want the save functionality also, i will give. Let me know. thanks.

thanks
Attached Files
File Type: zip IPTC.zip (42.7 KB, 791 views)
__________________
Karpagarajan. R
Necessity is the mother of invention
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14  
Old 05-02-2007, 03:11 AM
Balasubramanian.S Balasubramanian.S is offline
D-Web Sr.Programmer
 
Join Date: Mar 2007
Posts: 182
Balasubramanian.S is on a distinguished road
Default Re: Extract Meta Data from images

Hi Karpagarajan,

I am trying to add as a reference a dll that you have sent. But the following error occurs while registering the DLL using RegSvr32.

LoadLibrary("NewIptc.dll") failed.The specified module could not be found.
Please help me to solve the problem..

Thanks...

S.Balasubramanian.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #15  
Old 05-03-2007, 04:39 AM
Karpagarajan Karpagarajan is offline
D-Web Analyst
 
Join Date: Mar 2007
Posts: 301
Karpagarajan is on a distinguished road
Thumbs up Re: Extract Meta Data from images

Hi balasubramanian,

I couldnt get the error when i tried to implement it in the another system - vb project. Its working fine.

Do you have any option in C# to include this dll to your project?

I dont know the exact procedure. this module should not be registered.

I will let u know

thanks
__________________
Karpagarajan. R
Necessity is the mother of invention
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #16  
Old 05-06-2007, 11:22 PM
Balasubramanian.S Balasubramanian.S is offline
D-Web Sr.Programmer
 
Join Date: Mar 2007
Posts: 182
Balasubramanian.S is on a distinguished road
Red face Re: Extract Meta Data from images

Hi Karpagarajan,

I have to Register this DLL using Regsvr32 to use it in C# Project. Please tell me whether it is a managed DLL or unmanaged DLL. Please send me the VB project that you have implemented this DLL.

Thanks..
S.Balasubramanian.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #17  
Old 05-08-2007, 10:03 PM
Balasubramanian.S Balasubramanian.S is offline
D-Web Sr.Programmer
 
Join Date: Mar 2007
Posts: 182
Balasubramanian.S is on a distinguished road
Default Re: Extract Meta Data from images

Hi Karpagarajan,

I can read the IPTC metadata from the DLL that you have sent. But, I can't write the IPTC medata using this dll. Please help me to write the IPTC metadata.


Thanks...
S.Balasubramanian.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #18  
Old 05-09-2007, 06:15 AM
Karpagarajan Karpagarajan is offline
D-Web Analyst
 
Join Date: Mar 2007
Posts: 301
Karpagarajan is on a distinguished road
Thumbs up Re: Extract Meta Data from images

Hi balasubramanian,

Here I have attached the vc++ dll source file for reading and saving the IPTC data on to the image file.

Hope it will be useful for you.. let me know the feedback..

thanks
Attached Files
File Type: zip NewIPTCSave.zip (35.9 KB, 627 views)
__________________
Karpagarajan. R
Necessity is the mother of invention
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #19  
Old 05-09-2007, 07:22 AM
Balasubramanian.S Balasubramanian.S is offline
D-Web Sr.Programmer
 
Join Date: Mar 2007
Posts: 182
Balasubramanian.S is on a distinguished road
Default Re: Extract Meta Data from images

Hi Karpagarajan,

I checked the dll that you have sent now. It is working fine.

Thanks...

S.Balasubramanian.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #20  
Old 08-22-2007, 06:51 AM
Booom Booom is offline
Administrator
 
Join Date: Feb 2007
Posts: 72
Booom is on a distinguished road
Default Re: Extract Meta Data from images

Very good contribution has been made to this thread and so ive made this thread sticky.

Good Luck and continue quality content posting in this thread regularly because our goal must be to get the 1st result in search engines when searched for extract iptc metadata or extract metadata or extract iptc metadata using c# etc.,

Thanks
__________________
Vinoth Chandar
Creator of Discussweb
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Reading EXIF, IPTC & ICC Profile metadata from an image using MagickNet in C# letmein C# Programming 0 03-27-2008 12:42 AM
Applying ICC profiles to a TIFF,JPEG files using C# oxygen C# Programming 1 02-28-2008 10: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 10:33 PM
Read and Write IPTC and EXIF metadata fro raw Images Balasubramanian.S C# Programming 4 08-03-2007 06:38 AM
I have a C source to write iptc and exif metadata for raw images. How to use it in C# oxygen C# Programming 0 07-21-2007 01:56 AM


All times are GMT -7. The time now is 07:31 PM.


Copyright ©2004 - 2007, DiscussWeb. All Rights Reserved.
Our Partners
One Way Moving Companies | Stamford Dentist | Euro Millions Lottery | Home Loans| Furniture

SEO by vBSEO 3.0.0