从 EPS 文件中提取 XMP 元数据

发布于 2024-08-28 09:02:08 字数 117 浏览 3 评论 0原文

我正在尝试在 C# 或经典 ASP 中实现一个模块,该模块从 EPS 文件中提取 XMP 数据。

是否有一个框架或组件(不一定是免费的)可以帮助我创建这个模块?

任何建议/指导将不胜感激。

I am trying to implement a module in either C# or classic ASP, which extracts the XMP data from a EPS file.

Is there a framework or component (not necesarilly free) which can help me to create this module?

Any advice / direction will be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

聊慰 2024-09-04 09:02:08

虽然我没有检查 http://www.imagemagick.org/ 应该能够做到这一点并且它可以作为 ASP COM 对象加载。

' example usage in ASP - resize an image
Set img = CreateObject("ImageMagickObject.MagickImage.1")
msgs = img.convert(src, "-scale", "200x200", trg)

编辑:

根据此信息,有可能:

如何在 Rails 应用程序中使用 mini_magick 获取 EXIF 关键字?

针对此新信息重写(未测试):

Set img = CreateObject("ImageMagickObject.MagickImage.1")
msgs = img.convert("identify", "-verbose", trg)

其中 trg 是您的文件,然后您必须处理输出以获取您需要的信息。

While I didn't check http://www.imagemagick.org/ should be able to do this and it can be loaded as an ASP COM object.

' example usage in ASP - resize an image
Set img = CreateObject("ImageMagickObject.MagickImage.1")
msgs = img.convert(src, "-scale", "200x200", trg)

Edit:

According to this info it is possible:

How to get EXIF keywords using mini_magick in a Rails app?

Re-written for this new info (not tested):

Set img = CreateObject("ImageMagickObject.MagickImage.1")
msgs = img.convert("identify", "-verbose", trg)

Where trg is your file, you would then have to process the output to get the info you needed.

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