Image manipulation like in Winamp?
BlitzMax Forums/BlitzMax Programming/Image manipulation like in Winamp?
| ||
Hi! I was looking for a way to make the logo I display in a maxgui canvas more interesting. I always remember the "about box" of Winamp and like the logo is transformed there. Is it possible to do such effects in realtime with bmx as well? Are there any tutorials that might give me a hint on how to code such box? Grisu |
| ||
You'll probably need a graphics canvas canvas:TGadget=CreateCanvas( etc ... Look at the example program for CreateCanvas() it shows you how to add a canvas to the window and animate it. Just remember you have to call Flip() and also RedrawGadget(canvas) to see the results. Then, anything you can do in Max2D or GL/DX you should be able to do with your logo. |