How to scale image (Bitmap/EncodedImage) efficiently in Blackberry (using OpenVG/OpenGL if hardware acceleration supported). Can something like VGField/GLField be used to achieve that?

I have already tried Bitmap.scaleInto(...), EncodedImage.scaleImage32(..) and some naive algorithms (raw data manipulation). Also I can't use ZoomScreen because it is not possible (?) to change the image of an ZoomScreen instance dynamically.

Need some idea about how the default image viewer application in BlackBerry device (e.g. Torch 9800) performs smooth pinch zooming.

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

The usual technique is:

  • Step 1: scale the current thumbnail, so you get a rather blocky looking image, but has the advantage of working nearly instantaneously.

  • Step 2: kick off the higher resolution image decoder on a separate thread. When it is done, it sends the newly decoded image back to the UI thread to replace the approximate image that was used from step 1.

link|improve this answer
Thank you. Step 1 is okay, Step 2 also, but the problem is in Step 2, I want a really fast image scaling routine. – Rupak Sep 13 '11 at 9:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.