Click here to Skip to main content
Sign Up to vote bad
good
See more: JavaAndroid
I have byte array img
image = new GraphicObject(BitmapFactory.decodeByteArray(img, 0, isize));
Please help.
Posted 21 Jan '13 - 8:09
halabella1.3K


1 solution

You can use scale transform to change the size of the image. If scaling is above one , it will zoom the image.
 

public static Bitmap scaleImage(Bitmap src,float sx,float sy)
{
    Matrix matrix = new Matrix();
    matrix.postScale(sx, sy);
    src=Bitmap.createBitmap(src, 0, 0,   src.getWidth(), src.getHeight(), matrix, true);
    return src;
}
 
If you have byte array, you can convert that to Bitmap object and can call this method.
 
Here is how you can convert it to byte array.
 
Bitmap.createBitmap(image, w, h, android.graphics.Bitmap.Config.ARGB_8888);
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 364
1 Arun Vasu 223
2 OriginalGriff 190
3 CPallini 163
4 Aarti Meswania 158
0 Sergey Alexandrovich Kryukov 10,169
1 OriginalGriff 7,749
2 CPallini 4,181
3 Rohan Leuva 3,482
4 Maciej Los 3,089


Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 21 Jan 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid