我想保存没有透明区域的位图。
位图具有较大的透明像素。
所以我想删除那个
我该怎么做?
我无法添加图片,请用符号解释。
我不想裁剪功能。 我希望使用过滤器
┌────────────────────────┐
│透明区域
│┌────────
│裁剪这个
└────────┘
└────────────────────────┘
答案 0 :(得分:22)
要查找位图的非透明区域,请迭代x和y中的位图,找到非透明区域的最小值和最大值。然后将位图裁剪为这些坐标。
Bitmap CropBitmapTransparency(Bitmap sourceBitmap)
{
int minX = sourceBitmap.getWidth();
int minY = sourceBitmap.getHeight();
int maxX = -1;
int maxY = -1;
for(int y = 0; y < sourceBitmap.getHeight(); y++)
{
for(int x = 0; x < sourceBitmap.getWidth(); x++)
{
int alpha = (sourceBitmap.getPixel(x, y) >> 24) & 255;
if(alpha > 0) // pixel is not 100% transparent
{
if(x < minX)
minX = x;
if(x > maxX)
maxX = x;
if(y < minY)
minY = y;
if(y > maxY)
maxY = y;
}
}
}
if((maxX < minX) || (maxY < minY))
return null; // Bitmap is entirely transparent
// crop bitmap to non-transparent area and return:
return Bitmap.createBitmap(sourceBitmap, minX, minY, (maxX - minX) + 1, (maxY - minY) + 1);
}
答案 1 :(得分:7)
使用此github裁剪透明边框。
schedule_nr
答案 2 :(得分:3)
我拿了https://community.hortonworks.com/articles/91849/design-nifi-flow-for-using-putsql-processor-to-per.html并将其改进为Kotlin扩展功能。我稍微调整了一下,更改了一些变量名以获得更好的可读性,它增加了更多修复@Alvaro Menezes's answer提到的抛出IllegalArgumentException的问题
/**
* Trims a bitmap borders of a given color.
*
*/
fun Bitmap.trim(@ColorInt color: Int = Color.TRANSPARENT): Bitmap {
var top = height
var bottom = 0
var right = width
var left = 0
var colored = IntArray(width, { color })
var buffer = IntArray(width)
for (y in bottom until top) {
getPixels(buffer, 0, width, 0, y, width, 1)
if (!Arrays.equals(colored, buffer)) {
bottom = y
break
}
}
for (y in top - 1 downTo bottom) {
getPixels(buffer, 0, width, 0, y, width, 1)
if (!Arrays.equals(colored, buffer)) {
top = y
break
}
}
val heightRemaining = top - bottom
colored = IntArray(heightRemaining, { color })
buffer = IntArray(heightRemaining)
for (x in left until right) {
getPixels(buffer, 0, 1, x, bottom, 1, heightRemaining)
if (!Arrays.equals(colored, buffer)) {
left = x
break
}
}
for (x in right - 1 downTo left) {
getPixels(buffer, 0, 1, x, bottom, 1, heightRemaining)
if (!Arrays.equals(colored, buffer)) {
right = x
break
}
}
return Bitmap.createBitmap(this, left, bottom, right - left, top - bottom)
}
答案 3 :(得分:0)
遵循官方文档:
新的位图可能与源是同一对象,或者可能已经制作了副本。
使用源位图执行.recycle()
时应考虑到这一点。