在Windows窗体中旋转图像(C#)

时间:2017-04-02 19:51:13

标签: c# winforms animation spinning

我正在一个音乐播放器工作,我希望当前歌曲的专辑艺术在圆形图片框中旋转,只是一个vynil转盘。

我已经有了圆形图片框,我试图让它旋转,但是它大致旋转,看起来并不平滑。所以我不知道我是否使用了错误的参数或者我的代码中是否有错误。

此处使用的代码: Rotating image around center C#

希望你能提供帮助。提前谢谢。

2 个答案:

答案 0 :(得分:1)

WinForms图形API非常有限,这也是整个平台过时的原因。 WPF更能够进行图形显示,因为它有硬件加速和DirectX。 我的意见是,如果你正在创建有趣的解决方案使用至少WPF。如果你的目标纯粹是商业,那么WinForms就足够了。

答案 1 :(得分:1)

对于我来说这是非常顺利的,PictureBox大小为150x150,图像大小为200x200:

Rotating Vinyl Record

public partial class Form1 : Form
{

    public Form1()
    {
        InitializeComponent();
    }

    private int Angle;
    private Image Art; // you may need to resample larger images to a smaller image dynamically!
    private int AngleStep = 20;
    private System.Drawing.Drawing2D.GraphicsPath Vinyl = new System.Drawing.Drawing2D.GraphicsPath();

    private void Form1_Load(object sender, EventArgs e)
    {
        timer1.Interval = 50;
        Art = Properties.Resources.AlbumArt2; // image as embedded resource (or from somewhere else)

        // larger circle with the center cut out: (like a vinyl record)
        Vinyl.AddEllipse(pictureBox1.ClientRectangle);
        Rectangle rc = new Rectangle(pictureBox1.Width / 2, pictureBox1.Height / 2, 1, 1);
        rc.Inflate(10, 10);
        Vinyl.AddEllipse(rc);

        pictureBox1.Paint += PictureBox1_Paint;
    }

    private void PictureBox1_Paint(object sender, PaintEventArgs e)
    {
        Graphics G = e.Graphics;
        G.SetClip(Vinyl);
        G.TranslateTransform(pictureBox1.Width / 2, pictureBox1.Height / 2); // move to the center
        G.RotateTransform(Angle); // rotate to the current angle
        G.DrawImage(Art, new Point(-(Art.Width / 2), -(Art.Height / 2))); // draw the image centered
    }

    private void button1_Click(object sender, EventArgs e)
    {
        timer1.Enabled = !timer1.Enabled;
    }

    private void timer1_Tick(object sender, EventArgs e)
    {
        Angle = Angle + AngleStep;
        if (Angle >= 360)
        {
            Angle = Angle - 360;
        }
        pictureBox1.Refresh();
    }

}

玩它,看看它是否适合你。您肯定需要从较大的图像中制作动态较小的图像。如果你想要性能图形和动画,请按照DigheadsFerke的建议移动到WPF。