我最近一直在使用位图,但我不明白为什么我实现的这段代码没有调整大小和更改图像大小,请看
try {
Bitmap bitmapImage = MediaStore.Images.Media.getBitmap(getContentResolver(),filePath);
Bitmap bitmapScaledImage = Bitmap.createScaledBitmap(bitmapImage, 50, 50, false);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmapScaledImage.compress(Bitmap.CompressFormat.JPEG,50,stream);
byte[] byteArray = stream.toByteArray();
Bitmap compressedBitmap = BitmapFactory.decodeByteArray(byteArray,0,byteArray.length);
imaView.setImageBitmap(compressedBitmap);
} catch (IOException e) {
e.printStackTrace();
}
我要完成的是这个
感谢您的帮助