Package com.castlabs.android.utils
Class ImageUtils
- java.lang.Object
-
- com.castlabs.android.utils.ImageUtils
-
public class ImageUtils extends Object
Image utilities that offers helper functions to decode and scale bitmap images.- Since:
- 1.0.0
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BitmapdecodeBitmap(byte[] data)Creates aBitmapfrom teh given data arraystatic BitmapdownsizeBitmap(byte[] data, int targetWidth)Scale the given bitmap data and return a new, scaledBitmapif target width is specified.
-
-
-
Method Detail
-
decodeBitmap
public static Bitmap decodeBitmap(byte[] data)
Creates aBitmapfrom teh given data array- Parameters:
data- the data array- Returns:
- the bitmap
-
downsizeBitmap
public static Bitmap downsizeBitmap(byte[] data, int targetWidth)
Scale the given bitmap data and return a new, scaledBitmapif target width is specified. If no target with is given, the unscaled bitmap is loaded and returned.- Parameters:
data- the data arraytargetWidth- the target width or -1- Returns:
- the scaled image
-
-