将位图放置在动态壁纸中

发布于 2024-10-16 02:40:36 字数 551 浏览 9 评论 0原文

您好,我正在尝试在屏幕上放置几个位图并旋转它们。 来使其工作

canvas.drawBitmap(pic2, rotatePic, null);

我可以通过执行rotatePic is matrix

postRotate(5, pic2.getHieght()/2, pic2.getWidth()/2) 

,这样可以旋转图片并将其放置在 0, 0 处,这样我尝试放置它

Bitmap topPic = Bitmap.createBitmap(pic2, 0, 0, pic2.getWidth(), 
        pic2.getHeight(), rotatePic, false); 

而不是放置

canvas.drawBitmap(topPic, 200, 100, null);

它正确的位置但它不再正确旋转,看起来像是在弹跳和旋转 我已经尝试了一切

Hello I am trying to place acouple bitmaps on the screen and rotate them. I can get this to work by doing

canvas.drawBitmap(pic2, rotatePic, null);

rotatePic is matrix with

postRotate(5, pic2.getHieght()/2, pic2.getWidth()/2) 

this rotates the pic and puts it at 0, 0 so to place it i tried

Bitmap topPic = Bitmap.createBitmap(pic2, 0, 0, pic2.getWidth(), 
        pic2.getHeight(), rotatePic, false); 

than place with

canvas.drawBitmap(topPic, 200, 100, null);

it places it correctley but it no longer rotates correctley it looks like it is bouncing and spinning I've tried everthing

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

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

发布评论

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

评论(1

请别遗忘我 2024-10-23 02:40:36

您也可以尝试旋转画布本身,使用

canvas.rotate(degress, px, py);

这里是 Android 参考页面的链接:

Canvas.rotate();

希望这有帮助!

You can alternatively try rotating the canvas itself, using

canvas.rotate(degress, px, py);

Here's a link to the Android reference page for this:

Canvas.rotate();

Hope this helps!!

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