扩展 ImageMagickNet
我正在尝试向 ImageMagickNet 类添加自定义函数。它应该使用 ImageMagick.NET 项目中的 IsSimilarImage magick 方法,但我很困惑是否必须通过 Magick++ 路由此方法,因为 .NET 端可用的任何功能都源自魔法++。
I’m trying to add a custom function to class ImageMagickNet. It should use the IsSimilarImage magick
method from the ImageMagick.NET project but I’m confused as to whether I have to route this method through the Magick++, as any functionality available to the .NET side originates in the Magick++.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这已经很老了,但由于尚未得到答复,所以就到这里。
请注意,我没有查看过 ImageMagick 库,因此下面代码中的任何实现细节都只是一个示例。用正确的实施取代垃圾。假设它正在导出有效的 .NET 对象,那么它的工作方式如下:
This is pretty old but as is it unanswered, here goes.
Please note that I have not looked at the ImageMagick libraries, so any implementation details in the below code is strictly an example. Replace rubbish with correct implementation. Assuming it is exporting valid .NET objects, this is how it would work: