Bitmap bmp = new Bitmap(@"c:\vf\pics\1.jpg"); using (Graphics g = Graphics.FromImage(e.Frame)) { g.DrawImage(bmp, 0, 0, bmp.Width, bmp.Height); e.UpdateData = true; } bmp.Dispose();