//폼의 특정 위치에 이미지 출력 예제입니다. private void Form1_Paint(object sender, PaintEventArgs e) { Image newImage = Image.FromFile("D:\\logo.png"); int x = 100; int y = 200; int width = 450; int height = 150; e.Graphics.DrawImage(newImage, x, y, width, height); }