Image not at proper place after rotating (graphics)(旋转后图像不在正确位置(图形))
问题描述
我试图以不同的速率显示两个直径为 512untis 的旋转轮,但我无法删除之前绘制的图像图形并将旋转图形设置在正确的位置.现在我正在以任意角度进行旋转.我尝试了 affineTransform 并得到了旋转,但很奇怪,就像所有像素都散开了一样.我使用带有 thread.sleep() 的 while 循环.以下是代码://drawSmallCircle 和drawBigCircle 返回两个图像.
I am trying to display two rotating wheels with diameter 512untis at different rates but i am not able to remove the previous drawn image graphics and set the rotated graphics at the correct position. For now i am doing a rotation with arbitrary angle. I tried affineTransform and got the rotations but it was weird like all pixels spread away. Im using a while loop with thread.sleep(). The following is the code : //The drawSmallCircle and drawBigCircle return two images.
推荐答案
Swing 的第一条规则.不要阻塞事件调度线程.这样做会使您的应用程序看起来像是挂起并阻止 EDT 处理任何重绘请求.
First rule of Swing. Don't block the Event Dispatching Thread. Doing so will make you application look like it's hung and prevent the EDT from processing any repaint requests.
这意味着,您需要某种方式来安排不阻止 EDT 的更新
This means, you need some way to schedule updates that doesn't block the EDT
Swing 的第二条规则.不要从除 EDT 之外的任何线程创建或修改任何 UI 组件.
Second rule of Swing. Don't create or modify any UI component from any thread other then the EDT.
一般来说,你应该避免覆盖 JFrame
等顶级容器的 paint
方法,除此之外,它们不是双缓冲的,这意味着你的绘画会闪烁因为它已更新.相反,您应该使用 Swing
容器之一,例如 JPanel
Generally, you should avoid overriding the paint
method of top level containers like JFrame
, apart from everything else, they're not double buffered, meaning your painting will flicker as it's updated. Instead, you should use one of the Swing
containers, like JPanel
有很多不同的方法可以实现这一目标.基本上,这里我使用了三个列表,但如果我是认真的,我会创建一个可以维护所有必需信息(图像、角度和增量)的对象
There are lots of different ways to achieve this. Basically, here I've used three lists, but if I was serious, I would create an object that could maintain all the required information (image, angle an delta)
为了实现实际的动画效果,我使用了一个javax.swing.Timer
.这将至少每 n 个周期触发一个事件,但更重要的是,它是在事件调度线程的上下文中执行的.这可确保对角度所做的所有更改都以防止在我们更新值时发生任何绘画可能性的方式完成...
In order to achieve the actual animation, I've used a javax.swing.Timer
. This will trigger an event at least every n periods, but more importantly, it does it within the context of the Event Dispatching Thread. This ensures that all the changes made to the angles are done in way that will prevent any possibility of painting occurring while we're updating the values...
此示例以不同(随机)速度旋转三个图像...
This example rotates the three images at different (random) speeds...
这篇关于旋转后图像不在正确位置(图形)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!