ASP 照片处理 - 列出照片颜色
就像 Ruby (RMagicK) 中令人惊叹的“直方图”属性一样,它按频率顺序计算照片中的颜色列表 - 对于经典 ASP/.NET,是否有与此类似的第三方形式插件还是组件?
问候
Like the the amazing "histogram" property in Ruby (RMagicK), that computes a list of colors in a photo, in order of frequency - is there anything similar to this for Classic ASP/.NET, in the form of a third-party plugin or component?
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来 RMagick 是 ImageMagick 的衍生品。 Windows 版本有一个安装程序,允许您安装 COM 组件。 (您必须在安装程序中检查此项才能安装)。 链接
此 COM 组件可以在经典 ASP 中使用。
我有一些使用 ImageMagick 的经典 ASP 代码,语法有点不寻常。请注意,这不会单独起作用,因为它依赖于一些其他函数,但它会让您了解如何使用 COM 组件:
我不知道如何执行直方图,但我希望这个一段代码和 imagemagick 文档将帮助您实现目标。
埃里克
It sounds like RMagick is a derivative of ImageMagick. The Windows version has an installer that allows you to install a COM component. (You will have to check this in the installer for it to be installed). Link
This COM component can be used from classic ASP.
I have some classic ASP code that uses ImageMagick, the syntax is a bit unusual. Please note that this won't function on its own, because it depends om some other functions, but it will give you an idea of how to use the COM component:
I don't know how to perform a histogram, but I hope this piece of code together with the imagemagick docs will get you there.
Erik