07-27-2008 07:51 AM
Hello guys'
Do you know How to create Encoded Image object fromBitmap object ?
I need to zoom I/Out existing bitmap. For do this, I am using EncodedImage.
Is there any solution ?
Tnx for ur advice'
Solved! Go to Solution.
07-27-2008 11:00 AM
07-28-2008 04:14 AM
I initialize bitmap object by byte array of JPG image.
EncodedImage image = EncodedImage.createEncodedImage(byteImage, 0, byteImage.length);
....
Bitmap bimap = image.getBitmap();
Now I need to get EncodedImage object from "bitmap".
07-29-2008 09:39 PM
07-30-2008 09:47 AM
07-31-2008 01:45 AM
07-20-2011 07:30 AM
I know one thing :Bitmap and EncodedImage have the same methods to acceess image:
for Bitmap - Bitmap..getBitmapResource(String imageName);
for EncodedImage - EncodedImage.getEncodedImageResource(String imageName);