如何以编程方式更改图像中的颜色?
我有一个具有透明背景的 .PNG 图像,其中有一个黑色绘图,我如何以编程方式将此图像中的“黑色绘图颜色”更改为我想要的任何颜色;使用 rim 4.5 API ? 提前致谢 ....
I have a .PNG image with a transparent background and a drawing in it with a black color, how could I change the "black drawing color" in this image to any color i want programmatically; using rim 4.5 API ?
THANKS IN ADVANCE ....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我找到了解决方案,这里是为有兴趣的人提供的。
I found the solution, here it is for those who are interested.
您可以解析图像 RGB,搜索黑色并将其替换为您想要的任何颜色。
You can parse the image RGBs searching for the black color and replace it with whatever color you desire.
您可以将 PNG 图像读取为字节数组并编辑调色板块。
此方法仅适用于 PNG-8 图像。
这是我的代码:
You can read your PNG image to byte array and edit palette chunk.
This method is suitable only for PNG-8 images.
Here is my code: