/**
* @author LuoXianXiong luoxianxiong@gmail.com
* @version 1.0
* @deprecation imageUtil
*/
public class ImageUtil {
// Zoom-in Bitmap
public static Bitmap zoomBitmap(Bitmap bitmap, int w, int h) {
if (w <= 0 || h <= 0) {
return bitmap;
}
int width = bitmap.getWidth();
int height = bitmap.getHeight();
Matrix matrix = new Matrix();
float scal
* @author LuoXianXiong luoxianxiong@gmail.com
* @version 1.0
* @deprecation imageUtil
*/
public class ImageUtil {
// Zoom-in Bitmap
public static Bitmap zoomBitmap(Bitmap bitmap, int w, int h) {
if (w <= 0 || h <= 0) {
return bitmap;
}
int width = bitmap.getWidth();
int height = bitmap.getHeight();
Matrix matrix = new Matrix();
float scal