Android 中是否有 Raster.getSample(int, int, int) 的等效项?

发布于 2024-12-01 22:55:53 字数 472 浏览 1 评论 0 原文

我需要使用现有的 Java 代码片段在 Android 中编写一个项目。 其中使用了Raster.getSample(int x, int y, int b)。 第三个参数是像素的频带。

为了让它们在 Android 中运行,我使用 Bitmap 而不是 Raster。 但知道我只能使用 getPixels(int, int)。我怎样才能提取乐队? 我可以使用其他类或方法吗?

旧代码:

Raster rasterData;
y_ = rasterData.getSample(x + 1, row, 0);

新代码:

Bitmap rasterData;
y_ = rasterData.getPixels(x + 1, row);
...?...

我怎么有人有一个想法。 谢谢!

I need to write a Project in Android, with an existing Java-Code-Fragment.
In these, Raster.getSample(int x, int y, int b) is used.
The 3rd Parameter is the band, of the Pixel.

To get these running in Android, i use Bitmap instead of Raster.
But know i can only use getPixels(int, int). How can i extract the band?
Is there any other Class or Method i can use?

Old Code:

Raster rasterData;
y_ = rasterData.getSample(x + 1, row, 0);

New Code:

Bitmap rasterData;
y_ = rasterData.getPixels(x + 1, row);
...?...

I how someon have an idea.
Thanks!

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

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

发布评论

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

评论(1

冷︶言冷语的世界 2024-12-08 22:55:53

您可以使用 red、greenbluealpha .android.com/reference/android/graphics/Color.html" rel="nofollow">颜色类别

Bitmap rasterData;
int y_ = rasterData.getPixel(x + 1, row);
int red = Color.red(y_);

You can use methods red, greeen, blue and alpha of Color class

Bitmap rasterData;
int y_ = rasterData.getPixel(x + 1, row);
int red = Color.red(y_);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文