winform显示头像照片 做出 圆角效果,该怎么处理
1个回答
展开全部
string filename = "icon.png";//如果不是png类型,须转换
System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(filename);
for (int y = 0; y < 100; y++)//假设图片已经处理为100*100像素
{
for (int x = 0; x < 100; x++)
{
if ((x - 50) * (x - 50) + (y - 50) * (y - 50) > 50 * 50)//圆标准方程
{
//将圆以外的点设为透明
bitmap.SetPixel(x, y, System.Drawing.Color.FromArgb(0, 255, 255, 255));
}
}
}
pictureBox1.Image = bitmap;
System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(filename);
for (int y = 0; y < 100; y++)//假设图片已经处理为100*100像素
{
for (int x = 0; x < 100; x++)
{
if ((x - 50) * (x - 50) + (y - 50) * (y - 50) > 50 * 50)//圆标准方程
{
//将圆以外的点设为透明
bitmap.SetPixel(x, y, System.Drawing.Color.FromArgb(0, 255, 255, 255));
}
}
}
pictureBox1.Image = bitmap;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询