博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 提供两种切割圆形图片的方式
阅读量:5282 次
发布时间:2019-06-14

本文共 3679 字,大约阅读时间需要 12 分钟。

效果:

private void Form1_Load(object sender, EventArgs e)        {            string file =System.IO.Path.Combine(Environment.CurrentDirectory, @"11.jpg");            try            {                Image i = new Bitmap(file);                pbO.Image = i;                pbD1.Image = WayOne(file);                pbD2.Image = WayTwo(file);                pbS1.Image = WaySOne(file);                pbS2.Image = WaySTwo(file);            }            catch (Exception ex)            {                MessageBox.Show(ex.Message);            }        }        private Bitmap WayOne(string file)        {            using (Image i = new Bitmap(file))            {                Bitmap b = new Bitmap(i.Width, i.Height);                using (Graphics g = Graphics.FromImage(b))                {                    g.FillEllipse(new TextureBrush(i), 0, 0, i.Width, i.Height);                }                return b;            }        }        private Bitmap WayTwo(string file)        {            using (Image i = new Bitmap(file))            {                Bitmap b = new Bitmap(i.Width, i.Height);                using (Graphics g = Graphics.FromImage(b))                {                    g.DrawImage(i, 0, 0, b.Width, b.Height);                    int r = Math.Min(b.Width, b.Height) / 2;                    PointF c = new PointF(b.Width / 2.0F, b.Height / 2.0F);                    for (int h = 0; h < b.Height; h++)                        for (int w = 0; w < b.Width; w++)                            if ((int)Math.Pow(r, 2) < ((int)Math.Pow(w * 1.0 - c.X, 2) + (int)Math.Pow(h * 1.0 - c.Y, 2)))                            {                                b.SetPixel(w, h, Color.Transparent);                            }                }                return b;            }        }        private Bitmap WaySOne(string file)        {            using (Image i = new Bitmap(file))            {                Bitmap b = new Bitmap(i.Width, i.Height);                using (Graphics g = Graphics.FromImage(b))                {                    g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;                    using (System.Drawing.Drawing2D.GraphicsPath p = new System.Drawing.Drawing2D.GraphicsPath(System.Drawing.Drawing2D.FillMode.Alternate))                    {                        p.AddEllipse(0, 0, i.Width, i.Height);                        g.FillPath(new TextureBrush(i), p);                    }                    //g.FillEllipse(new TextureBrush(i), 0, 0, i.Width, i.Height);                }                return b;            }        }        private Bitmap WaySTwo(string file)        {            using (Image i = new Bitmap(file))            {                Bitmap b = new Bitmap(i.Width, i.Height);                using (Graphics g = Graphics.FromImage(b))                {                    g.DrawImage(i, 0, 0, b.Width, b.Height);                    int r = Math.Min(b.Width, b.Height) / 2;                    PointF c = new PointF(b.Width / 2.0F, b.Height / 2.0F);                    for (int h = 0; h < b.Height; h++)                        for (int w = 0; w < b.Width; w++)                            if ((int)Math.Pow(r, 2) < ((int)Math.Pow(w * 1.0 - c.X, 2) + (int)Math.Pow(h * 1.0 - c.Y, 2)))                            {                                b.SetPixel(w, h, Color.Transparent);                            }                    //画背景色圆                    using (Pen p = new Pen(System.Drawing.SystemColors.Control))                        g.DrawEllipse(p, 0, 0, b.Width, b.Height);                }                return b;            }        }

 

转载于:https://www.cnblogs.com/wjshan0808/p/5909174.html

你可能感兴趣的文章
iOS8统一的系统提示控件——UIAlertController
查看>>
PAT甲级——1101 Quick Sort (快速排序)
查看>>
python创建进程的两种方式
查看>>
1.2 基础知识——关于猪皮(GP,Generic Practice)
查看>>
迭代器Iterator
查看>>
java易错题----静态方法的调用
查看>>
php建立MySQL数据表
查看>>
最简单的线程同步的例子
查看>>
旅途上看的电影和观后感
查看>>
Ztree异步树加载
查看>>
关于IE和火狐,谷歌,Safari对Html标签Object和Embed的支持问题
查看>>
poj3320 Jessica's Reading Problem(尺取思路+STL)
查看>>
分布式计算开源框架Hadoop介绍
查看>>
安卓平台接口剖析
查看>>
坏的事情不都会带来坏的结果
查看>>
RPC的基础:调研EOS插件http_plugin
查看>>
第二次团队冲刺第二天
查看>>
bzoj 2257 (JSOI 2009) 瓶子与燃料
查看>>
11)Java abstract class 和 interface
查看>>
使用xrdp或Xmanager 远程连接 CentOS6
查看>>