用于 Java 的类似 RMagick 的图像处理库
是否有任何 Java 图像处理库与 RMagick? (我见过 JMagick,不幸的是这不是我正在寻找的那种库。)
编辑:请注意,速度并不关心我们本身。我们正在寻找的是一个易于使用的库,它提供了许多内置的常用操作。
Is there any Java image processing library that is as easy to use as and provides the set of functionalities provided by RMagick? (I have seen JMagick and unfortunately that is not the kind of library I am looking for.)
EDIT: Please note that the speed does not concern us as such. What we are looking for is an easy-to-use library that provides many common operations built-in.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它不是一个纯 Java 解决方案,但 IM4JAVA 项目适用于多种用途。 Im4Java 本身是一个纯 Java 库,使用 ImageMagick 的命令行版本作为其后端。它易于使用,并且公开了 ImageMagick 的几乎所有功能,并且没有在应用程序中包含本机代码的危险。这意味着您可以在应用程序服务器等中安全地使用它,而不必担心本机代码的崩溃会导致整个服务器瘫痪。
It's not a pure Java solution, but the IM4JAVA project works for many uses. Im4Java itself is a pure Java library that uses the commandline version of ImageMagick as its back-end. It's easy to use and exposes pretty much all the functionality of ImageMagick without the dangers of including native code in your app. That means you can safely use it in application servers etc. without worrying that a crash in the native code will bring down your whole server.
查看这个,尤其是JAI。我没有这个库的经验,但它在我的待办事项列表中。网站上有一些演示。也许这就是您正在寻找的?!
Check out this, especially JAI. i dont have experience with this libs, but its on my todo list. there are demos somewhere on the site. maybe it is what you are looking for?!
有 ImageJ,它号称是
世界上最快的纯 Java 图像处理程序
它可以用作库在另一个应用程序中。它的架构并不出色,但它可以完成基本的图像处理任务。
There's ImageJ, which boasts to be the
world's fastest pure Java image processing program
It can be used as a library in another application. It's architecture is not brilliant, but it does basic image processing tasks.