0
votes
1answer
92 views

Creation of multi page TIFF in an applet

I have a list of images and would like to create a multi-page TIFF with them. I know it can be done using JAI but since its jar is quite big (9mb, on windows) i rather not use it, if possible (i do ...
0
votes
0answers
115 views

Jaicodec IOException while reading tiff image stream

Im able to read tiff image stream and load my applet the first time with the code. ReadableByteChannel rBytChnl = Channels.newChannel(url.openStream()); ByteBuffer buffer = ...
0
votes
2answers
412 views

Tiff image in java applet

I am trying simple java applet program to display tiff image as below import java.applet.Applet; import java.awt.Graphics; import javax.swing.ImageIcon; /* <applet code="Form1" width=100 ...
0
votes
1answer
148 views

Do Java2d or Java Advanced Imaging need to be installed by the end user before they can be used?

I am making a game engine that will run in an applet, that would need to be able to do things like Perspective transform (for Mode 7), basic transforms (drawing an image at custom corner points), etc, ...
3
votes
1answer
373 views

performance concerns in using Java Advanced Imaging APIs

In our project we use JAI for showing parts of an image, rotating an image and basic zooming in an applet. We now observe that the applet takes a lot of time to load - around 20 seconds for the first ...
1
vote
1answer
386 views

Java plugin (JAI) automatic installation

I was wondering if anyone has any experience getting JAI to auto install from an applet for multiple platforms. I've looked at ...