我想编写一个简单的代码-不带库的调整大小函数。我必须使用getPixel和setPixel,结果可能没有正常的质量。但是我不知道怎么做。
fun resuzeimage(bitmap:Bitmap,newWidth,newHeight){
for (j in 0 until bitmap.height) {
for (i in 0 until butmap.width) {
///code
}
}
}
请帮我
答案 0 :(得分:0)
fun resizeImage(yourBitmap: Bitmap, newWidth :Int, newHeight :Int):Bitmap
{
var resized = Bitmap.createScaledBitmap(yourBitmap!!, newWidth, newHeight, true)
return resized
}
您可以根据需要更改高度和宽度返回类型。