I am working on a Midlet application. I am finding myself in the need to scale images very often. This has become a problem because some phones are pretty slow and scaling takes too long.
Currently I'm using Image.createRGBImage(int, int, int, boolean) to scale the image.
I was wondering if any of you knew of a very efficient and fast way to scale an image.
Note: this is a Midlet application so only JavaME is available, meaning I don't have access to some other libraries available in the full java version.
Note2: most of my scaling is done from small to large images, although I also do scale down the image.