如何更改图像的颜色矩阵x,y坐标?

发布于 2024-10-14 14:58:38 字数 388 浏览 2 评论 0原文

我正在开发一个允许用户为图像着色的应用程序。我有我想要应用的颜色的颜色矩阵,但问题是不是改变 xy 坐标的颜色,而是整个图像被着色。我不知道如何将 colormatix 应用于图像的指定坐标。

我正在使用

matrix = 
    new float[] { 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, };

imageview.setColorFilter(new ColorMatrixColorFilter(matrix));

我正在寻找类似 imageview.SetPixelColorMatrix(x,y,matrix)

任何人都可以帮助我吗?

I am developing an app which allows users to color the images. I have the color matrix of the color I want to apply but the problem is instead of changing color of x y coordinates whole image gets colored. I don't know how to apply the colormatix to specified coordinates of the image.

I am using

matrix = 
    new float[] { 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, };

imageview.setColorFilter(new ColorMatrixColorFilter(matrix));

I am looking for something like imageview.SetPixelColorMatrix(x,y,matrix)

Can anyone help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那请放手 2024-10-21 14:58:38

使用
createBitmap(位图源、int x、int y、int 宽度、int 高度、矩阵 m、布尔过滤器)
在这里您可以指定源的坐标。有关更多详细信息,请参阅 这个

use
createBitmap (Bitmap source, int x, int y, int width, int height, Matrix m, boolean filter)
here you can specify the co-ordinates of the source.for further details see this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文