在android中以一定角度绘制图像
我需要为我的项目以一定角度绘制图像。
我知道 canvas.rotate() 代码。但它确实扭曲了我的形象。
ctx.save();
ctx.rotate(30);
ctx.drawImage();
ctx.restore();
还有其他方法可以以一定角度绘制图像吗?有人在使用上述技术绘制图像时遇到过失真问题吗?
BR, 杰希尔
I needed to draw an image at an angle, for on of my project.
I am aware about the canvas.rotate() code. However it does distort my image.
ctx.save();
ctx.rotate(30);
ctx.drawImage();
ctx.restore();
Is there any other way to draw an image at an angle. Did any one else come across the problem of distortion while drawing images using the above technique?
BR,
Jayshil
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的找到了答案,
这个解决方案的灵感来自 http://www.anddev.org/resize_and_rotate_image_ -_example-t621.html Maurl 提供的解决方案
OK found the answer,
This solution was inspired by http://www.anddev.org/resize_and_rotate_image_-_example-t621.html solution give by Maurl