.net CF C# Writing to Exif

  • Thread starter Thread starter ondra.paulicek
  • Start date Start date
O

ondra.paulicek

Hi!



I've spent about a week diving into this problem and I've found some
solutions on c++ (via opennetcf.com).

I'm not able to use this solution on c# because of IntPtr & Marshal
I'm not able to use

Marshal.PtrToStructure(IntPtr, ImageCodecInfo); -- this is not working
because of struct is not sequential.

which I need to iterate through installed codecs.



This(http://www.eggheadcafe.com/articles/20030706.asp) is great
article about the subject, but I'm not able to use it in CF because of
lack of methods in Drawing.Imaging in CF. I've tried to use this
solution and edit it to use OpenNetCF framework with no success(I'm
just not able to read ImageCodecInfo from OpenNetCF).



Is there any way how to work(write/read) with Exif in .net CF C#?



I'm desperately looking for some solution for my diploma thesis.

If you have any information regarding this issue please let me know.



Thanks in advance for any help.



I enclose some other website which I've found usefull.

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=553938&SiteID=1
- here is incomplete solution
 
I would suggest that you learn the specifiction and do the manipulation
yourself. You can read and write to files no problem with C#.
 
Back
Top