Transparent image rotating animation #54
Replies: 3 comments 6 replies
-
Think about what you're trying to achieve! It's as if you're designing a clock with a second hand that ticks 6 times every second (ie 360 times a minute)! IOW, you almost certainly don't need so many images. Even if your rotation is to be really slow (which I doubt), you still wouldn't notice a rotation change of just 1 degree. And generally to avoid noticeable flicker you need about 25 frames (images) per second, though if rotation is fast you could probably get away with even fewer frames. So if, for example, you wanted one image rotation per second, then you'd only need about 25 images and a timer update every 40 msecs. The angle change between each image would be 360deg / 25 (ie 14.4 deg or 0.2513 rad). And if you're getting flicker with that, then try using 30 images/ sec instead (and redo the math with that). |
Beta Was this translation helpful? Give feedback.
-
OK, if you really do need an image for every degree then an array of 360 rotated images is still manageable. You could store them as PNG (or JPG) resources (ie in the EXE's resource section or as a separate resource DLL). And loading these pre-rotated images from the resource section will still be very much quicker than rotating them "on the fly" as you need them. And of course you'd only need one TImage32 object to do the loading and displaying.
You've almost certainly introduced a memory leak. (If you were just trying to do too much in the OnTimer event, then that event would sometimes be skipped.) |
Beta Was this translation helpful? Give feedback.
-
Hi,
How to create the rotating animation of a PNG image with TImage32? A sample demo would be great.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions