C#, 윈폼(winform, Windows Forms)에서 이미지를 출력하는 간단한 예제입니다. // using System; using System.Drawing; using System.Windows.Forms; namespace ImageEx { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Paint(object sender, PaintEventArgs e) { // Bitmap 객체 생성 Bitmap bmp = new Bitmap(@"c:\temp\kakao11.png"); int w = bmp.Width; // 원본 이미지 가로 크기 int h = bmp.Height;..