ImageMagick:在 C# 中获取日期和时间?

发布于 2024-12-01 00:20:17 字数 312 浏览 0 评论 0原文

我正在编写一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

月光色 2024-12-08 00:20:17

您可以使用 -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.aspx

You can use the -format commandline param and the respective options to get DateTimeOriginal like this identify -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

牛↙奶布丁 2024-12-08 00:20:17

如果设置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 like output = p.StandardOutput.ReadLine();. If you execute identify -format "%[EXIF:DateTimeOriginal]" as your part of your command line, you will get the data in your output string.

眼趣 2024-12-08 00:20:17

应该可以使用 .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 the TryGetPropertyItem method.

This way you do not need to spawn a new process.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文