Android如何使用矩阵获取imageview的边界

发布于 2024-12-22 05:17:17 字数 88 浏览 1 评论 0原文

我有一个 ImageView,其scaletype 设置为矩阵,并且希望在矩阵转换后获得一个具有图像边界的矩形。

我怎样才能得到这样的直角?谢谢。

I have an ImageView with scaletype set to matrix, and would like to get a Rect with the bounds of the image after the transformation of the matrix.

How do I get such a rect? thanks.

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

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

发布评论

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

评论(2

稍尽春風 2024-12-29 05:17:17
ImageView imageView = (ImageView)findViewById(R.id.imageview);
Drawable drawable = imageView.getDrawable();
Rect imageBounds = drawable.getBounds();

然后使用Matrix.mapRect。

ImageView imageView = (ImageView)findViewById(R.id.imageview);
Drawable drawable = imageView.getDrawable();
Rect imageBounds = drawable.getBounds();

Then use Matrix.mapRect.

谎言 2024-12-29 05:17:17
ImageView imageView = (ImageView)findViewById(R.id.imageview);

可绘制可绘制 = imageView.getDrawable();
矩形 imageBounds = drawable.getBounds();

这是错误的,这将得到原始的可绘制边界,而不是真正的边界
在 ImageView 上绘制的位图

ImageView imageView = (ImageView)findViewById(R.id.imageview);

Drawable drawable = imageView.getDrawable();
Rect imageBounds = drawable.getBounds();

this is wrong, this will get the original drawable bound, not the really bound
of bitmap drawn on ImageView

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