Draw an Image : Graphics « 2D Graphics « C# / C Sharp
- C# / C Sharp
- 2D Graphics
- Graphics
Draw an Image
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
public class Form1 : Form {
protected override void OnPaint(PaintEventArgs e) {
Graphics g = e.Graphics;
Bitmap bmp = new Bitmap("rama.jpg");
g.DrawImage(bmp, 0, 0);
}
public static void Main() {
Application.Run(new Form1());
}
}
Related examples in the same category