在Kotlin中,可以使用以下步骤来删除Bitmap中的白色边框/背景:
val mutableBitmap = bitmap.copy(Bitmap.Config.ARGB_8888, true)
for (x in 0 until mutableBitmap.width) {
for (y in 0 until mutableBitmap.height) {
val pixel = mutableBitmap.getPixel(x, y)
if (Color.alpha(pixel) == 255 && Color.red(pixel) == 255 && Color.green(pixel) == 255 && Color.blue(pixel) == 255) {
mutableBitmap.setPixel(x, y, Color.TRANSPARENT)
}
}
}
imageView.setImageBitmap(mutableBitmap)
这样,白色边框/背景就会被删除,只剩下图像的内容。
推荐的腾讯云相关产品:腾讯云图像处理(Image Processing)服务,该服务提供了丰富的图像处理功能,包括图像去除背景、图像裁剪、图像滤镜等。你可以通过以下链接了解更多信息: 腾讯云图像处理
领取专属 10元无门槛券
手把手带您无忧上云