• 微软原版系统

  • 一键重装系统

  • 纯净系统

  • 在线技术客服

魔法猪系统重装大师 一键在线制作启动 U 盘 PE 系统 用一键重装的魔法拯救失去灵魂的系统
当前位置:首页 > 教程 > 电脑教程

C#压缩照片上传到各种空间代码示例

时间:2015年04月02日 15:20:05    来源:魔法猪系统重装大师官网    人气:10244

周末和几个同学去了西涌露营,这么美丽的海滩不上传照片分享着实可惜,可是现在的相机拍出来的照片很大,特别是单反,而咱们的网络带宽又何其可怜,所以先压缩再上传会是非常好的选择,可是呢这么多张照片一张张压缩太麻烦了(鄙人对作图是小白,不懂得使用做图工具),而咱是码农,码农就要用码农的方式,于是乎就想做个程序了。

好了废话了那么多开工了。

第一次迭代开始,先完成单张相片压缩的Demo。我始终坚信好的代码是重构出来的,因而在这里我将使用迭代开发的思想逐步完成这个程序。先看下第一次迭代的代码

        static void Main(string[] args)

        {
            string savePath = @"E:\2013相片\上传前\";
            string sourcePath = @"E:\2013相片\QQ空间使用\";
            string sourceName = "DSC_0216.JPG";
            int scale = 5;

            Image img = Image.FromFile(sourcePath + sourceName);
            int width = img.Width / scale;
            int height = img.Height / scale;

            Image imgNew = new Bitmap(width, height);
            Graphics g = Graphics.FromImage(imgNew);
            g.DrawImage(img, new System.Drawing.Rectangle(0, 0, width, height),
            new System.Drawing.Rectangle(0, 0, img.Width, img.Height),
            System.Drawing.GraphicsUnit.Pixel);

            imgNew.Save(savePath + "a.jpg", ImageFormat.Jpeg);
        }

这样就保证了这个代码已经能处理单张照片了。

第二次迭代,对其进行重构。

经过分析,该功能的实现需要两步,第一获取要缩小的图片集合,第二就是缩小图片的逻辑,故而就有了以下重构后的代码

class Program
    {
        static readonly string[] IMAGE_EXTNAME = new string[] { "jpg"};
        static void Main(string[] args)
        {
            string savePath = @"E:\2013相片\上传前\";
            string sourcePath = @"E:\2013相片\QQ空间使用\";
            int scale = 5;

            List imageNames = GetImageNames(sourcePath);
            if (imageNames != null && imageNames.Count > 0)
            {
                foreach (var item in imageNames)
                {
                    SaveSmallPhoto(sourcePath + item, scale, savePath + item);
                }
            }
        }

        /// 
        /// 获取路径下所有符合指定图片后缀文件名
        /// 
        /// 路径
        /// 
        static List GetImageNames(string path)
        {
            string[] fileNames = Directory.GetFiles(path);
            if (fileNames == null || fileNames.Length == 0)
            {
                return null;
            }

            List imageNames = new List();
            foreach (var item in fileNames)
            {
                if (ExistsInExtName(item, IMAGE_EXTNAME))
                {
                    imageNames.Add(item.Substring(item.LastIndexOf('\\') + 1));
                }
            }

            return imageNames;
        }

        /// 
        /// 判断文件名是否符合指定后缀名
        /// 
        /// 文件名
        /// 符合要求的后缀名
        /// 
        static bool ExistsInExtName(string name, string[] extNames)
        {
            if (string.IsNullOrEmpty(name) || extNames == null || extNames.Length == 0)
            {
                return false;
            }

            foreach (var item in extNames)
            {
                if (name.ToLower().EndsWith(item))
                {
                    return true;
                }
            }

            return false;
        }

        /// 
        /// 将图片按比例缩小保存
        /// 
        /// 原图片路径名
        /// 缩小比例
        /// 缩小后保存的路径名
        static void SaveSmallPhoto(string fromPath, int scale, string toPath)
        {
            int width, height;
            using (Image img = Image.FromFile(fromPath))
            {
                width = img.Width / scale;
                height = img.Height / scale;

                using (Image imgNew = new Bitmap(width, height))
                {
                    using (Graphics g = Graphics.FromImage(imgNew))
                    {
                        g.DrawImage(img, new Rectangle(0, 0, width, height),
                            new Rectangle(0, 0, img.Width, img.Height), System.Drawing.GraphicsUnit.Pixel);
                    }

                    imgNew.Save(toPath, ImageFormat.Jpeg);
                }
            }
        }
    }

是不是很简单啊?在这里使用的一些路径比例的变量,可将其写在配置文件,后续再压缩照片,只要修改相应配置即可轻松实现。

完了之后,大家有更好的关于压缩照片的办法不妨拿出来分享下!

好了过程完毕上传张周末去深圳西涌玩的照片吧(照片是全景拍摄的,但是不知道为啥上传后不能全看到)

压缩,照,片上,传到,各种,空间,代码,示例,周末,
栏目:电脑教程 阅读:1000 2023/12/27
Win7教程 更多>>
U盘教程 更多>>
Win10教程 更多>>
魔法猪学院 更多>>

Copyright © 2015-2023 魔法猪 魔法猪系统重装大师

本站发布的系统仅为个人学习测试使用,请在下载后24小时内删除,不得用于任何商业用途,否则后果自负,请支持购买微软正版软件。

在线客服 查看微信 返回顶部