由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 求助Java Image Tools or API
相关主题
Re: AWT和SWING到底有什么不同?这里有做J2ME的吗?
j2se和j2ee的差别具体在哪?去做J2EE好,还是Android好?
how to find out free disk spaceRe: Where can i find this package?
Java sucks big time!如何从Java application打开windows打印机界面?
How to build a java web service server?Image processing library
Android C/C++ native calls Java APIs纽约附近的兄弟有想一起做个交易系统的吗?
J2EE入门JAVA程序设计语言讲座 第二部分
[转帖]如何才算掌握Java(J2SE篇)Re: Java Mail API
相关话题的讨论汇总
话题: 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版参与讨论
相关主题
Re: Java Mail APIHow to build a java web service server?
Re: 网上哪里有JDBC的入门书呢Android C/C++ native calls Java APIs
Re: Where can I download Java API for offline reading?J2EE入门
Re: XML help?[转帖]如何才算掌握Java(J2SE篇)
Re: AWT和SWING到底有什么不同?这里有做J2ME的吗?
j2se和j2ee的差别具体在哪?去做J2EE好,还是Android好?
how to find out free disk spaceRe: Where can i find this package?
Java sucks big time!如何从Java application打开windows打印机界面?
相关话题的讨论汇总
话题: java话题: api话题: image话题: tools话题: j2se