Hi Scott,
Thomas DeWeese wrote:
I just noticed Apple released a Java 1.3/1.4 update for Tiger. Can you check if this fixes the problem?
Scott A. Ruffner wrote:
i just installed the Java update on my Powerbook, and it made no difference in performance -- it's still 20x slower than under Panther 10.3.9. :(
Too bad.
thomas, is there any chance you'll be able to revise how batik uses BufferedImage/WritableRaster to avoid this performance hit?
There is essentially no way to fix this in all of Batik. Much of Batik is built around the java.awt.image.RenderedImage interface. In this interface an image is composed of tiles which are rasters, so you basically can't avoid touching the rasters that are used to build BufferedImages for rendering. There is some chance that the use of Rasters/RenderedImages might be avoided in the 'DynamicRenderer' which would help for simple things but I think that you would find that most content would 'trip' over the raster access. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
