boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 求助Java Image Tools or API
相关主题
Re: AWT和SWING到底有什么不同?
j2se和j2ee的差别具体在哪?
how to find out free disk space
Java sucks big time!
How to build a java web service server?
Android C/C++ native calls Java APIs
J2EE入门
[转帖]如何才算掌握Java(J2SE篇)
这里有做J2ME的吗?
去做J2EE好,还是Android好?
相关话题的讨论汇总
话题: java话题: api话题: image话题: tools话题: j2se
进入Java版参与讨论
1 (共1页)
d****n
发帖数: 5
1
没接触过Java Image。
要作一个Servlet程序,需要动态的生成一些PNG图像,以及放大缩小和颜色操作。
大概看了一下Java Advanced Imaging API还有一些AWT API。不知道Java的performance
怎么样。有没有比较好的开放原码工具?请高人指点。多谢
d****n
发帖数: 5
2
Thanks.
If Java's performance is really bad, I will have to use JNI to connect to
other tools. One example is to use JMagick - ImageMagick. But I really want a
pure Java solution if possible.
Java Image APIs confused me a lot. We have Java2D, JAI (Java Advanced Imaging
API), new ImageIO API and some old APIs in AWT package. Hope some experts can
give me hints so I can shortcut to the right direction.


API。不知道Java的performance
g*****g
发帖数: 34805
3
JAI is not a part of J2SE. Like other packages such as Java3D, they
provide a Sun implementation of some multimedia processing utilities.
If you care about platform-neutralism, you have to stick with J2SE,
which provides very limited support in image processing. ImageIO API
is new in J2SE1.4, you will have compatible problem if some of your clients
are still using 1.3 or lower. However, it looks like you are gonna process
image only on server end. So that's not a big deal. Just go ahead and
use

【在 d****n 的大作中提到】
: Thanks.
: If Java's performance is really bad, I will have to use JNI to connect to
: other tools. One example is to use JMagick - ImageMagick. But I really want a
: pure Java solution if possible.
: Java Image APIs confused me a lot. We have Java2D, JAI (Java Advanced Imaging
: API), new ImageIO API and some old APIs in AWT package. Hope some experts can
: give me hints so I can shortcut to the right direction.
:
: 择
: API。不知道Java的performance

1 (共1页)
进入Java版参与讨论
相关主题
去做J2EE好,还是Android好?
Re: Where can i find this package?
如何从Java application打开windows打印机界面?
Image processing library
纽约附近的兄弟有想一起做个交易系统的吗?
JAVA程序设计语言讲座 第二部分
Re: Java Mail API
Re: 网上哪里有JDBC的入门书呢
Re: Where can I download Java API for offline reading?
Re: XML help?
相关话题的讨论汇总
话题: java话题: api话题: image话题: tools话题: j2se