p********f 发帖数: 787 | 1 Need to do some simple image processing (encoding, resizing, cropping, etc.)
. What's the best library out there? IamgeMagick? GD? Thanks. | g*****g 发帖数: 34805 | 2 Java2D, part of Java JDK is good enough for what you list.
.)
【在 p********f 的大作中提到】 : Need to do some simple image processing (encoding, resizing, cropping, etc.) : . What's the best library out there? IamgeMagick? GD? Thanks.
| c*****t 发帖数: 1879 | 3 Basic Java Graphics manipulations have all the features you need.
Graphics2D has some even more advanced features. JAI has even
more features that you will ever need, but most IMO are pretty
slow since it was aimed to be fairly generic.
I think that in JRE 1.4.2, the basic imageio includes PNG (very simple),
GIF and JPG (not including JPEG2000). One can download a separate
jar from Sun for additional formats such as TIFF, PNG (out), PNM,
BMP etc. Later version of JRE should have them (and inc
【在 p********f 的大作中提到】 : Need to do some simple image processing (encoding, resizing, cropping, etc.) : . What's the best library out there? IamgeMagick? GD? Thanks.
| p********f 发帖数: 787 | 4 Thanks, both.
【在 c*****t 的大作中提到】 : Basic Java Graphics manipulations have all the features you need. : Graphics2D has some even more advanced features. JAI has even : more features that you will ever need, but most IMO are pretty : slow since it was aimed to be fairly generic. : I think that in JRE 1.4.2, the basic imageio includes PNG (very simple), : GIF and JPG (not including JPEG2000). One can download a separate : jar from Sun for additional formats such as TIFF, PNG (out), PNM, : BMP etc. Later version of JRE should have them (and inc
|
|