如何创建 jmagick 应用程序
我对 jmagick 很陌生。谁能帮助我如何启动 jmagick 简单应用程序?
I'm very new to jmagick. Can anyone help me out how to start a jmagick simple application ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
java.lang.NoClassDefFoundError:无法初始化类 magick.ImageInfo
表示 jmagick.jar 不在您的
CLASSPATH
上。您需要将其添加到CLASSPATH
中。此外,您还需要安装ImageMagick。这是本机库完成所有工作。安装后,您需要设置指向 ImageMagick 安装位置的
LD_LIBRARY_PATH
环境变量。设置取决于您使用的操作系统。 wiki 上有详细的说明。有关代码示例,请参阅 Andrew 提供的链接。这应该可以帮助您开始。编辑: 如何在 Windows 上安装 JMagick。
java.lang.NoClassDefFoundError: Could not initialize class magick.ImageInfo
means that jmagick.jar is not on your
CLASSPATH
. You need to add it to theCLASSPATH
.In addition, you also need to install ImageMagick. It's the native library that does all the work. After installation you will need to set
LD_LIBRARY_PATH
environment variable that points to the location where ImageMagick was installed. The setup depends on what OS you're using. There are detailed instructions on the wiki. For a code example, see the link provided by Andrew. This should get you started.Edit: How to install JMagick on Windows.