ColorImageView icon indicating copy to clipboard operation
ColorImageView copied to clipboard

Android 图片不规则封闭区域填充 ~~~

Results 2 ColorImageView issues
Sort by recently updated
recently updated
newest added

您好 安卓菜鸟一枚。想研究一下填色动画。项目运行不起来呢 可否求助一下您

如果给了边界颜色,就会全屏填充颜色,如果不给则填充的颜色锯齿很大。 我做了一些修改,在填充白色区域还可以(不需要写入边界颜色) ``` //override by swifty if pixel is white then fill private boolean needFillPixel(int[] pixels, int pixel, int index) { if (hasBorderColor) { return pixels[index] != mBorderColor; } else...