• 图片类处理


    1、读取图片两种方式

    System.Drawing.Bitmap imgFrom = new System.Drawing.Bitmap(fromImg)

    System.Drawing.Image gif = System.Drawing.Image.FromFile(fromImg);

    2、把图片从一个绘制到另一个,首先要先实例化一个Bitmap(背景默认黑色)

     System.Drawing.Bitmap bmpOut = new System.Drawing.Bitmap(Width, Height);

    using (System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(bmpOut))
    {
    g.FillRectangle(System.Drawing.Brushes.White, 0, 0, bmpOut.Width, bmpOut.Height); //填充背景颜色
    g.DrawImage(imgIn, new System.Drawing.Rectangle(0, 0, Width, Height), new System.Drawing.Rectangle(0, 0, Width, Height), System.Drawing.GraphicsUnit.Pixel);
    }

    3、如果需要把特定颜色去掉

    bmpOut .MakeTransparent(System.Drawing.Color.FromArgb(252, 252, 252)); //把该颜色设置为透明

    4、图片保存后,一般会比较大,可以设置压缩

    System.Drawing.Imaging.EncoderParameters encoderParams = new System.Drawing.Imaging.EncoderParameters();
    long[] quality = new long[1] { 100 };
    encoderParams.Param[0] = new System.Drawing.Imaging.EncoderParameter(System.Drawing.Imaging.Encoder.Quality, quality);

    bmpOut.Save(fileSaveUrl, GetCodecInfo("image/gif"), encoderParams);

    5、完整代码

    public void Cut(System.Drawing.Bitmap imgIn, int Width, int Height, string fileSaveUrl)
    {
    System.Drawing.Imaging.FrameDimension fd = new System.Drawing.Imaging.FrameDimension(imgIn.FrameDimensionsList[0]);
    if (imgIn.GetFrameCount(fd) > 0)
    {
    imgIn.SelectActiveFrame(fd, 0); //取第一帧图片
    imgIn.MakeTransparent(System.Drawing.Color.FromArgb(252, 252, 252)); //把该颜色设置为透明
    System.Drawing.Bitmap bmpOut = new System.Drawing.Bitmap(Width, Height);
    using (System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(bmpOut))
    {
    g.FillRectangle(System.Drawing.Brushes.White, 0, 0, bmpOut.Width, bmpOut.Height);
    g.DrawImage(imgIn, new System.Drawing.Rectangle(0, 0, Width, Height), new System.Drawing.Rectangle(0, 0, Width, Height), System.Drawing.GraphicsUnit.Pixel);
    }

    //以下代码为保存图片时,设置压缩质量
    System.Drawing.Imaging.EncoderParameters encoderParams = new System.Drawing.Imaging.EncoderParameters();
    long[] quality = new long[1] { 100 };
    encoderParams.Param[0] = new System.Drawing.Imaging.EncoderParameter(System.Drawing.Imaging.Encoder.Quality, quality);

    bmpOut.Save(fileSaveUrl, GetCodecInfo("image/gif"), encoderParams);
    }
    }

    6、获得ImageCodecInfo的两种方法

    private System.Drawing.Imaging.ImageCodecInfo GetCodecInfo(string mimeType)
    {
    System.Drawing.Imaging.ImageCodecInfo[] CodecInfo = System.Drawing.Imaging.ImageCodecInfo.GetImageEncoders();
    foreach (System.Drawing.Imaging.ImageCodecInfo ici in CodecInfo)
    {
    if (ici.MimeType == mimeType)
    return ici;
    }
    return null;
    }

    private ImageCodecInfo GetEncoder(ImageFormat format)
            {
    
                ImageCodecInfo[] codecs = ImageCodecInfo.GetImageDecoders();
    
                foreach (ImageCodecInfo codec in codecs)
                {
                    if (codec.FormatID == format.Guid)
                    {
                        return codec;
                    }
                }
                return null;
            }
  • 相关阅读:
    windows10 + anaconda + tensorflow-1.5.0 + python-3.6 + keras-2.2.4配置和安装
    k-center问题-学习
    交换机+路由器 网络口连接桥接关系示意
    用scp命令来通过ssh传输文件,ssh推送.py程序到CentOS7服务器端出现lost connection错误
    codevs 1519 过路费 最小生成树+倍增
    10.18 noip模拟试题
    poj 3565 ants
    [国家集训队2011]种树 (神贪心~~)
    poj 1821 Fence 单调队列优化dp
    SPFA 小优化*2
  • 原文地址:https://www.cnblogs.com/honzhez/p/6296630.html
Copyright © 2020-2023  润新知