Hello topdog770,
Here is the code, this crops the circular image from square but the circle is little bit distorted. Any help is appreciated
System.Drawing.Image imgSource = System.Drawing.Image.FromF
System.Drawing.Image imgTarget = new Bitmap(imgSource.Height, imgSource.Height);
Graphics g = Graphics.FromImage(imgTarg
g.SmoothingMode = System.Drawing.Drawing2D.S
path.AddEllipse(0, 0, imgTarget.Height, imgTarget.Height);
g.SetClip(path);
g.DrawImage(imgSource, 0, 0);
imgTarget.Save(@"C:\pictur
Main Topics
Browse All Topics





by: topdog770Posted on 2009-10-22 at 08:48:11ID: 25635589
What does your code look like, sunny?