zoukankan      html  css  js  c++  java
  • C#根据屏幕分辨率改变图片尺寸

    最近工作中遇到一个问题,就是需要将程序文件夹中的图片根据此时电脑屏幕的分辨率来重新改变图片尺寸

    以下为代码实现过程:

    1、获取文件夹中的图片,此文件夹名为exe程序同目录下

    //读取文件夹中文件
    DirectoryInfo dir = new DirectoryInfo(@"文件夹名");
    FileInfo[] fileInfo = dir.GetFiles();
     List<string> fileNames = new List<string>();
    foreach (FileInfo item in fileInfo)
    {
        fileNames.Add(item.Name);
    }

    2、获取电脑屏幕分辩率

    //获取全屏下屏幕分辩率
    Rectangle rect = new Rectangle();
    //全屏
    rect.Width = (int)System.Windows.SystemParameters.PrimaryScreenWidth;
    rect.Height = (int)System.Windows.SystemParameters.PrimaryScreenHeight;
    //rect = Screen.GetWorkingArea(this);//工作区域下的分辩率,不包括任务栏
    //rect.Width;//屏幕宽
    //rect.Height;//屏幕高 

    3、改变图片尺寸,并保存

    /// <summary>
    /// 生成缩略图
    /// </summary>
    /// <param name="serverImagePath">图片地址</param>
    /// <param name="thumbnailImagePath">缩略图地址</param>
    /// <param name="width">图片宽度</param>
    /// <param name="height">图片高度</param>
    /// <param name="p"></param>
    public static void GetThumbnail(string serverImagePath, string thumbnailImagePath, int width, int height)
    {
        System.Drawing.Image serverImage = System.Drawing.Image.FromFile(serverImagePath);
        //画板大小
        int towidth = width;
        int toheight = height;
        //缩略图矩形框的像素点
        int ow = serverImage.Width;
        int oh = serverImage.Height;
    
        if (ow > oh)
        {
            toheight = serverImage.Height * width / serverImage.Width;
        }
        else
        {
            towidth = serverImage.Width * height / serverImage.Height;
        }
        //新建一个bmp图片
        System.Drawing.Image bm = new System.Drawing.Bitmap(width, height);
        //新建一个画板
        System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(bm);
        //设置高质量插值法
        g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
        //设置高质量,低速度呈现平滑程度
        g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
        //清空画布并以透明背景色填充
        g.Clear(System.Drawing.Color.White);
        //在指定位置并且按指定大小绘制原图片的指定部分
        g.DrawImage(serverImage, new System.Drawing.Rectangle((width - towidth) / 2, (height - toheight) / 2, towidth, toheight),
            0, 0, ow, oh,
            System.Drawing.GraphicsUnit.Pixel);
        try
        {
            //以jpg格式保存缩略图
            bm.Save(thumbnailImagePath, System.Drawing.Imaging.ImageFormat.Jpeg);
        }
        catch (System.Exception e)
        {
            throw e;
        }
        finally
        {
            serverImage.Dispose();
            bm.Dispose();
            g.Dispose();
        }
    }

    自此整个功能就实现了。

  • 相关阅读:
    Executors几种常用的线程池性能比较
    mac上利用minikube搭建kubernetes(k8s)环境
    基于redis的分布式锁二种应用场景
    alibaba canal安装笔记
    开源流媒体服务器SRS学习笔记(4)
    开源流媒体服务器SRS学习笔记(3)
    pygame-KidsCanCode系列jumpy-part18-背景滚动
    开源流媒体服务器SRS学习笔记(2)
    开源流媒体服务器SRS学习笔记(1)
    pygame-KidsCanCode系列jumpy-part17-mask-collide碰撞检测
  • 原文地址:https://www.cnblogs.com/qiantao/p/9884574.html
Copyright © 2011-2022 走看看