如何使用矩阵将位图放置在画布上?

发布于 2024-12-15 15:29:13 字数 247 浏览 0 评论 0原文

我正在实现捏合和拖动的操作,但我对如何获取我正在影响的图像移动到它被拖动到的位置(缩放正在工作)感到困惑。

所以,过去我会这样定位图像......

canvas.drawBitmap(img, x,y, paint);

但现在我使用矩阵,我看不到其中的什么函数可以将图像移到我想要的位置。

有人可以发布一段简短的代码片段,说明如何使图像远离 0,0 吗?

TIA

I'm implementing a pinching and dragging thing and I'm confused as to how to get the image that I'm affecting to move to it's dragged to location (the scaling is working).

So, in the past I would position the image thusly...

canvas.drawBitmap(img, x,y, paint);

but now that I'm using a matrix I don't see what function in it gets the image over to where I want it to be.

Could someone post a short code snippet of what one needs to do to get the image to move away from 0,0?

TIA

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

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

发布评论

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

评论(1

呆萌少年 2024-12-22 15:29:14

在缩放矩阵上使用 postTranslate :

scaleMatrix.postTranslate(x, y);
canvas.drawBitmap(img, scaleMatrix, paint);

Use postTranslate on your scaling matrix:

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