如何在 .NET 中编辑 EXIF 数据
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/226973/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to edit EXIF data in .NET
提问by Mike C.
I am writing a photo gallery/sharing website and want to (1) write EXIF data to the JPEGs stored on server, and (2) strip that EXIF data prior to writing to the output stream for display.
我正在编写一个照片库/共享网站,并且想要 (1) 将 EXIF 数据写入存储在服务器上的 JPEG,以及 (2) 在写入输出流以进行显示之前去除该 EXIF 数据。
Is anyone aware of a dotNet library -- preferably open source -- that allows the editing (the key here is that I need to write/erase the EXIF data, not just read it) of EXIF data in image files?
有没有人知道 dotNet 库——最好是开源的——它允许编辑(这里的关键是我需要写/擦除 EXIF 数据,而不仅仅是读取它)图像文件中的 EXIF 数据?

