在android中以一定角度绘制图像

发布于 2024-12-12 05:39:10 字数 223 浏览 0 评论 0原文

我需要为我的项目以一定角度绘制图像。

我知道 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 技术交流群。

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

发布评论

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

评论(1

怎樣才叫好 2024-12-19 05:39:10

好的找到了答案,

Matrix matrix = new Matrix();
matrix.postScale(scaleWidth, scaleHeight);
matrix.postRotate(-25);
Bitmap resizedBitmap = Bitmap.createBitmap(productImage, 0, 0, productImage.getWidth(), productImage.getHeight(), matrix, true);

这个解决方案的灵感来自 http://www.anddev.org/resize_and_rotate_image_ -_example-t621.html Maurl 提供的解决方案

OK found the answer,

Matrix matrix = new Matrix();
matrix.postScale(scaleWidth, scaleHeight);
matrix.postRotate(-25);
Bitmap resizedBitmap = Bitmap.createBitmap(productImage, 0, 0, productImage.getWidth(), productImage.getHeight(), matrix, true);

This solution was inspired by http://www.anddev.org/resize_and_rotate_image_-_example-t621.html solution give by Maurl

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