gpt4 book ai didi

Android调整位图大小

转载 作者:行者123 更新时间:2023-11-30 04:05:54 24 4
gpt4 key购买 nike

我希望 bitmap 在被选中并插入到 imageview 后重新调整为 600*600

这是位图 ImageView 的代码

ImageView imageView = (ImageView) findViewById(R.id.ivPhoto);
chosenBitmap = BitmapFactory.decodeFile(picturePath);
imageView.setBackgroundColor(0);
imageView.setImageBitmap(chosenBitmap);

最佳答案

试试这个

Bitmap bMap =   Bitmap.createScaledBitmap(chosenBitmap, 600, 600, true);
imageView.setImageBitmap(bMap);

有关更多信息,请查看 here

关于Android调整位图大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11680561/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com