如何在 Java 中将 TIF 转换为 PNG?
在 Java 下,将 TIF 文件转换为 PNG 的最佳方法是什么?
简单是更好的选择,但如果最简单的方法是使用第三方库,那么我会考虑该解决方案。
Under Java what is the best way to go about converting an TIF file to a PNG?
Simplicity is preferable, but if the simplest way is to use a third party library then I would consider that solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
首先,安装 JAI。然后安装 JAI/ImageIO。然后做
First, install JAI. Then install JAI/ImageIO. Then do
使用 imageMagic java 库,例如 im4java,它们的性能和质量比 JAI 好得多,
例如:
im4java 的 maven 依赖项是
Use imageMagic java libraries like im4java, their performance and quality is much better then JAI
for example:
maven dependency for im4java is
Java 高级成像 APi 是一个很好的图像操作库
http://java .sun.com/products/java-media/jai/iio.html
Java advanced imaging APi is a good library for image manipulations
http://java.sun.com/products/java-media/jai/iio.html
下载 JIMI Software Development Kit jimi1_0.zip 并将 JimiProClasses.zip 设置为类路径
http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-java-client-419417.html #7259-jimi_sdk-1.0-oth-JPR
JIMI是较旧的java图像库,但它很容易使用,并且没有平台相关的代码(没有本机可执行文件,可以像标准jar一样使用它),
其中inMimeType和outMimeType图形格式是 mimetypes
Download JIMI Software Development Kit jimi1_0.zip and set JimiProClasses.zip to your classpath
http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-java-client-419417.html#7259-jimi_sdk-1.0-oth-JPR
JIMI is older java image library, but it is easy to use and there is no platform dependent code (no native executables, can use it like standard jar)
where inMimeType and outMimeType are graphics formats mimetypes
也许你可以使用这个代码,对我有用
maybe you can use this code, works for me