Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要删除/移除/设置透明位图的右上角(例如 10x10 像素)。
我有一个 60x60px 的位图,我想删除 10x10 的右上角。我试图用 Canvas & Paint 做到这一点,但我不能:(
为什么不在 60x60 图像上画一个 10x10 的黑色或白色(或任何颜色)补丁...最终结果,它似乎正是您想要的样子!
创建一个新的drawable并添加以下行:
<corners android:topRightRadius="10px" />
我找到了解决方案...
使用 Bitmap.getPixels 和 Bitmap.setPixels 我解决了这个问题。
谢谢!