ImageMagick:在 C# 中获取日期和时间?
我正在编写一个使用 ImageMagick 的 C# shell 应用程序。我想要获取 EXIF DateTimeOriginal
字段,以便我可以解析并重新格式化日期和时间以给 JPEG 加上时间戳。最好的方法是什么?
一些附加信息:我使用 .NET Process
类来驱动 ImageMagick,并且我可以使用 Process
类的输出流重定向 ImageMagick 的输出。我不明白的是如何调用 ImageMagick 来返回 DateTimeOriginal 数据。
预先感谢您的帮助。
I am writing a C# shell application that uses ImageMagick. I want to get the EXIF DateTimeOriginal
field, so that I can parse and reformat the date and time to timestamp a JPEG. What's the best way to do that?
Some additional information: I am using the .NET Process
class to drive ImageMagick, and I can redirect ImageMagick's output using the output stream of the Process
class. What I can't figure out is how to invoke ImageMagick to return the DateTimeOriginal data.
Thanks in advance for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
-format
命令行参数和相应选项来获取DateTimeOriginal
,如下所示identify -format "%[EXIF:DateTimeOriginal]"
请参阅http://www.imagemagick.org/script/escape.php
你可以这样做某种东西与.NET 内置类
Image
- 请参阅 http://msdn.microsoft.com/en-us/library/system.drawing.image.aspxYou can use the
-format
commandline param and the respective options to getDateTimeOriginal
like thisidentify -format "%[EXIF:DateTimeOriginal]"
see http://www.imagemagick.org/script/escape.php
You can do that kind of stuff with .NET built-in classes
Image
too - see http://msdn.microsoft.com/en-us/library/system.drawing.image.aspx如果设置
ProcessStartInfo.RedirectStandardOutput = true
,您可以使用output = p.StandardOutput.ReadLine();
之类的内容读取进程的输出。如果您执行identify -format "%[EXIF:DateTimeOriginal]"
作为命令行的一部分,您将在output
字符串中获取数据。If you set
ProcessStartInfo.RedirectStandardOutput = true
you can just read the process's output with something likeoutput = p.StandardOutput.ReadLine();
. If you executeidentify -format "%[EXIF:DateTimeOriginal]"
as your part of your command line, you will get the data in youroutput
string.应该可以使用 .NET Framework 中的对象读取此类 Exif 数据,最值得注意的是使用
Image
类和TryGetPropertyItem
方法。这样您就不需要生成新进程。
It should be possible to read that kind Exif data using the objects from the .NET Framework, most notable using the
Image
class and theTryGetPropertyItem
method.This way you do not need to spawn a new process.