> Ok, only two questions:
One request. Please post in-line, as I do, and trim earlier text
that is not needed.
> - How much space would I save using byte[][] instead of Image
> object?
(shrugs) 'It depends'. I never measured it exactly because
it depends on, for example, the JPEG compression level.
I got the impression the factor was at least 4-1 on an
'average' selection of compressed and uncompressed
images that might be lying about your disk. But don't
quote me - the major part of solving the problem was to
ensure the images were not cached within the JVM -
once that was solved, most of the memory errors
disappeared and I though much less about it.
> - Could you tell me the way to achieve this transformation, please?
Sure..
> (Remember it
> would be perfect if I can use the applet over MSJVM).
Ugghhh.. that obsolete, insecure, non-compliant plug-in again?
OK. You're in luck that the way is so basic.. but I am
taking a shortcut here, I have some code at the SaverBeans
project that does what I described. You can find it here..
<https://screensavers.dev.java.net/servlets/ProjectDocumentList?folderID=1393&exp
andFolder=1393&folderID=0>
the 'SliderSaver' zip file does just what I described.
I am afraid the slideshow overall is a bit 'overkill' for
a simple example, but if you can understand that code,
it will show you the basic technique (which should work
for 1.1, from memory).
HTH
Andrew T.