До После Подключаем либы using System.Drawing; using System.Drawing.Drawing2D; Код using System.Drawing; using System.Drawing.Drawing2D; Сам код: GraphicsPath el1 = new GraphicsPath(); el1.AddEllipse(0, 0, pictureBox1.Width - 3, pictureBox1.Height - 3); Region rg = new Region(el1); pictureBox1.Region = rg; Код GraphicsPath el1 = new GraphicsPath(); el1.AddEllipse(0, 0, pictureBox1.Width - 3, pictureBox1.Height - 3); Region rg = new Region(el1); pictureBox1.Region = rg; pictureBox1 - имя изображения Мб кому-то пригодится