2015/09/18

Android Bitmap縮放圖片大小

Code:
Bitmap bitmap = ...;
Bitmap bitmapResize = Bitmap.createScaledBitmap(bitmap:source, width:int, height:int, true);