Adding EXIF Info to Images in C#

后端 未结 1 952
悲哀的现实
悲哀的现实 2020-12-11 01:08

I want to add basic exif info to images like author,camera model,date etc.Is there a way to do this using the Inbuilt classes without using other external libraries.Does the

相关标签:
1条回答
  • 2020-12-11 01:49

    System.Drawing allows modifying the image properties with PropertyItems/SetPropertyItem. A sample can be found here.

    But this access is quite basic and there are quite a few libraries around (see for instance How to edit EXIF data in .NET). So I wonder if it's worth the trouble.

    After all, only JPEG and TIFF files support EXIF metadata according to Wikipedia.

    0 讨论(0)
提交回复
热议问题