如何创建 jmagick 应用程序

发布于 2024-10-20 00:34:23 字数 47 浏览 1 评论 0原文

我对 jmagick 很陌生。谁能帮助我如何启动 jmagick 简单应用程序?

I'm very new to jmagick. Can anyone help me out how to start a jmagick simple application ?

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

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

发布评论

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

评论(1

近箐 2024-10-27 00:34:23

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 the CLASSPATH.

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.

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