如何使用矩阵将位图放置在画布上?
我正在实现捏合和拖动的操作,但我对如何获取我正在影响的图像移动到它被拖动到的位置(缩放正在工作)感到困惑。
所以,过去我会这样定位图像......
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在缩放矩阵上使用 postTranslate :
Use postTranslate on your scaling matrix: