zoukankan      html  css  js  c++  java
  • Asp.net(C#)彩色图片转化为黑白

        /// <summary> 
        /// 彩色图片转化为黑白 
        /// </summary> 
        /// <param name="source"></param> 
        /// <returns></returns> 
        public static Bitmap ConvertToGrayscale(Bitmap bitmap) 
        { 
            Bitmap bm = new Bitmap(bitmap.Width, bitmap.Height); 
            for (int y = 0; y < bm.Height; y++) 
            { 
                for (int x = 0; x < bm.Width; x++) 
                { 
                    Color c = bitmap.GetPixel(x, y); 
                    int rgb = (int)(c.R * 0.3 + c.G * 0.59 + c.B * 0.11); 
                    bm.SetPixel(x, y, Color.FromArgb(rgb, rgb, rgb)); 
                } 
            } 
            return bm; 
        }
  • 相关阅读:
    linux 进程操作脚本
    go 项目监听重启
    go 小题
    beego 基础
    beego 接口开发
    beego 安装
    mongo curd
    html的学习(一)
    ssl
    java编码的学习
  • 原文地址:https://www.cnblogs.com/top5/p/1576280.html
Copyright © 2011-2022 走看看