当前位置:  编程技术>.net/c#/asp.net

C#图片上传-加水印-自动生成缩略图的代码

    来源: 互联网  发布时间:2014-08-30

    本文导语:  C#图片上传,加水印,自动生成缩略图 using System; using System.Data; using System.Data.SqlClient; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using...

C#图片上传,加水印,自动生成缩略图
using System;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Text;
using System.Text.RegularExpressions;
using System.Drawing;
using System.Drawing.Imaging;
using System.Collections;
using System.ComponentModel;
namespace Legalsoft.Images
{
    /// 
    /// News 的摘要说明
    /// 
    public class XImage
    {
        public Color tBackground;
        public Color tBorder;
        public Color tShadow;
        public int tQuality;
        public string markPosition;
        /// 
        /// 图片参数预定义
        /// 
        static Hashtable htmimes = new Hashtable();
        internal readonly string AllowExt = ".jpe|.jpeg|.jpg|.png|.tif|.tiff|.bmp|.gif";
        public XImage()
        {
            tBackground = Color.Transparent;
            tBorder = Color.Transparent;
            tShadow = Color.Transparent;
            tQuality = 100;
            markPosition = "左下角";
            #region 图片类型预定义
            htmimes[".jpe"]="image/jpeg";
            htmimes[".jpeg"] = "image/jpeg";
            htmimes[".jpg"] = "image/jpeg";
            htmimes[".png"] = "image/png";
            htmimes[".tif"] = "image/tiff";
            htmimes[".tiff"] = "image/tiff";
            htmimes[".bmp"] = "image/bmp";
            htmimes[".gif"] = "image/gif";
            #endregion
        }
        #region 下载指定URL图片并保存
        /// 
        /// 下载指定URL的文件并保存到指定目录
        /// 
        /// 
        public void DownloadImage(string strUrl, string file)
        {
            System.Net.WebClient wc = new System.Net.WebClient();
            wc.DownloadFile(strUrl, file);
        }
        #endregion
        #region C#自动生成缩略图
        /// 
        /// 按给定名字确定颜色
        /// 
        /// 
        /// 
        public Color ToColor(string name)
        {
            if (name == "白色") return Color.White;
            if (name == "红色") return Color.Red;
            if (name == "蓝色") return Color.Blue;
            if (name == "绿色") return Color.Green;
            if (name == "黑色") return Color.Black;
            if (name == "灰色") return Color.DarkGray;
            if (name == "黄色") return Color.Yellow;
            if (name == "紫色") return Color.Cyan;
            if (name == "无色") return Color.Transparent;
            return Color.Transparent;
        }
        /// 
        /// 按名字设置各种颜色,可以自行扩充:)
        /// 
        /// 
        /// 
        public int ToQuality(string name)
        {
            return Int32.Parse(name.Replace("%", ""));
        }
        /// 
        /// 获取图像编码解码器的所有相关信息
        /// 
        /// 包含编码解码器的多用途网际邮件扩充协议 (MIME) 类型的字符串
        /// 返回图像编码解码器的所有相关信息
        private static ImageCodecInfo GetCodecInfo(string mimeType)
        {
            ImageCodecInfo[] CodecInfo = ImageCodecInfo.GetImageEncoders();
            foreach (ImageCodecInfo ici in CodecInfo)
            {
                if (ici.MimeType == mimeType) return ici;
            }
            return null;
        }
        /// 
        /// 检测扩展名的有效性
        /// 
        /// 文件名扩展名
        /// 如果扩展名有效,返回true,否则返回false.
        private bool CheckValidExt(string sExt)
        {
            bool flag = false;
            string[] aExt = AllowExt.Split("|");
            foreach (string filetype in aExt)
            {
                if (filetype.ToLower() == sExt)
                {
                    flag = true;
                    break;
                }
            }
            return flag;
        }
        /// 
        /// 保存图片
        /// 
        /// Image 对象
        /// 保存路径
        /// 指定格式的编解码参数
        private void SaveImage(System.Drawing.Image image, string savePath, ImageCodecInfo ici)
        {
            //设置 原图片 对象的 EncoderParameters 对象
            EncoderParameters parameters = new EncoderParameters(1);
            parameters.Param[0] = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, ((long)tQuality));
            image.Save(savePath, ici, parameters);
            parameters.Dispose();
        }
        /// 
        /// 生成缩略图
        /// 
        /// 原图片路径(相对路径)
        /// 生成的缩略图路径,如果为空则保存为原图片路径(相对路径)
        /// 缩略图的宽度(高度与按源图片比例自动生成)
        public void ToThumbnail(string sourceImagePath, string thumbnailImagePath, int thumbnailImageWidth, int thumbnailImageHeight )
        {
            // 1.先检查图片格式等信息
            string ThumbnailImagePath = thumbnailImagePath;
            string SourceImagePath = sourceImagePath;
            string sExt = SourceImagePath.Substring(SourceImagePath.LastIndexOf(".")).ToLower();
            if (SourceImagePath.ToString() == System.String.Empty)
            {
                throw new NullReferenceException("SourceImagePath is null!");
            }
            if (!CheckValidExt(sExt))
            {
                throw new ArgumentException("原图片文件格式不正确,支持的格式有[ " + AllowExt + " ]", "SourceImagePath");
            }
            // 从原图片创建 Image 对象
            System.Drawing.Image image = System.Drawing.Image.FromFile(HttpContext.Current.Server.MapPath(SourceImagePath));
            // 2.计算图片的位置、尺寸等信息
            int tWidth, tHeight, tLeft, tTop;
            double fScale = (double)thumbnailImageHeight / (double)thumbnailImageWidth; // 高度宽度比
            if (((double)image.Width * fScale) > (double)image.Height) // 如果原图比较宽
            {
                tWidth = thumbnailImageWidth;
                tHeight = (int)((double)image.Height * (double)tWidth / (double)image.Width);
                tLeft = 0;
                tTop = (thumbnailImageHeight-tHeight)/2;
            }
            else
            {
                tHeight = thumbnailImageHeight;
                tWidth = (int)((double)image.Width * (double)tHeight / (double)image.Height);
                tLeft = (thumbnailImageWidth-tWidth)/2;
                tTop = 0;
            }
            if (tLeft < 0) tLeft = 0;
            if (tTop < 0) tTop = 0;
            if (tBorder != Color.Transparent)
            {
                tWidth -= 2;
                tHeight -= 2;
                tLeft++;
                tTop++;
            }
            if (tShadow != Color.Transparent)
            {
                tWidth -= 1;
                tHeight -= 1;
            }
            //用指定的大小和格式初始化 Bitmap 类的新实例
            //Bitmap bitmap = new Bitmap(ThumbnailImageWidth, num, PixelFormat.Format32bppArgb);
            Bitmap bitmap = new Bitmap(thumbnailImageWidth, thumbnailImageHeight, PixelFormat.Format32bppArgb);
            //从指定的 Image 对象创建新 Graphics 对象
            Graphics graphics = Graphics.FromImage(bitmap);
            //清除整个绘图面并以透明背景色填充
            if (tBackground != Color.Transparent)
            {
                graphics.Clear(tBackground);
            }
            else
            {
                graphics.Clear(Color.Transparent);
            }
            // 添加阴影
            if (tShadow != Color.Transparent)
            {
                Pen shPen = new Pen(tShadow);
                graphics.DrawLine(shPen, new Point(1, thumbnailImageHeight-1), new Point(thumbnailImageWidth-1, thumbnailImageHeight-1));
                graphics.DrawLine(shPen, new Point(thumbnailImageWidth-1, 1), new Point(thumbnailImageWidth-1, thumbnailImageHeight-1));
            }
            // 添加边框
            if (tBorder != Color.Transparent)
            {
                Pen bdPen = new Pen(tBorder);
                if (tShadow != Color.Transparent)
                {
                    graphics.DrawRectangle(bdPen, new Rectangle(0, 0, thumbnailImageWidth-2, thumbnailImageHeight-2));
                }
                else
                {
                    graphics.DrawRectangle(bdPen, new Rectangle(0, 0, thumbnailImageWidth-1, thumbnailImageHeight-1));
                }
            }
            //在指定位置并且按指定大小绘制 原图片 对象
            graphics.DrawImage(image, new Rectangle(tLeft, tTop, tWidth, tHeight));
            image.Dispose();
            try
            {
                //将此 原图片 以指定格式并用指定的编解码参数保存到指定文件
                string savepath = (ThumbnailImagePath == null ? SourceImagePath : ThumbnailImagePath);
                SaveImage(bitmap, HttpContext.Current.Server.MapPath(savepath), GetCodecInfo((string)htmimes[sExt]));
            }
            catch (System.Exception e)
            {
                throw e;
            }
            finally
            {
                bitmap.Dispose();
                graphics.Dispose();
            }
        }
        #endregion
        #region C#给图片添加水印
        public void Mark(string sourceImagePath, string markString)
        {
            // 1.先检查图片格式等信息
            string markImagePath = sourceImagePath;
            string SourceImagePath = sourceImagePath;
            string sExt = SourceImagePath.Substring(SourceImagePath.LastIndexOf(".")).ToLower();
            if (SourceImagePath.ToString() == System.String.Empty)
            {
                throw new NullReferenceException("SourceImagePath is null!");
            }
            if (!CheckValidExt(sExt))
            {
                throw new ArgumentException("原图片文件格式不正确,支持的格式有[ " + AllowExt + " ]", "SourceImagePath");
            }
            // 从原图片创建 Image 对象
            System.Drawing.Image image = System.Drawing.Image.FromFile(HttpContext.Current.Server.MapPath(SourceImagePath));
            //用指定的大小和格式初始化 Bitmap 类的新实例
            Bitmap bitmap = new Bitmap(image.Width, image.Height, PixelFormat.Format32bppArgb);
            //从指定的 Image 对象创建新 Graphics 对象
            Graphics graphics = Graphics.FromImage(bitmap);
            //在指定位置并且按指定大小绘制 原图片 对象
            graphics.DrawImage(image, new Rectangle(0, 0, image.Width, image.Height));
            #region 绘制水印
            // 设置水印字体
            int fHeight = image.Height/5;
            if(fHeight>16) fHeight = 16;
            Font drawFont = new Font("Arial", fHeight);
            // 设置水印文字位置,默认为左下角
            float x = 4;
            float y = image.Height - drawFont.Height - 4;
            if (markPosition == "左上角")
            {
                y = 4;
            }
            if (markPosition == "右上角")
            {
                x = image.Width - markString.Length * fHeight / 2 - fHeight;
                y = 4;
            }
            if (markPosition == "右下角")
            {
                x = image.Width - markString.Length * fHeight / 2 - fHeight;
            }
            if (markPosition == "图片中间")
            {
                x = image.Width / 2 - markString.Length * fHeight / 2;
                y = image.Height / 2 - fHeight / 2;
            }
            StringFormat drawFormat = new StringFormat();
            drawFormat.FormatFlags = StringFormatFlags.NoWrap;
            // 设置水印文字颜色,先绘制一个黑色字作为阴影,再绘制白色字,这样比较显眼;
            SolidBrush drawBrush = new SolidBrush(Color.Black);
            graphics.DrawString(markString, drawFont, drawBrush, x, y, drawFormat);
            drawBrush.Color = Color.White;
            graphics.DrawString(markString, drawFont, drawBrush, x-1, y-1, drawFormat);
            #endregion
            image.Dispose();
            try
            {
                //将此 原图片 以指定格式并用指定的编解码参数保存到指定文件
                string savepath = SourceImagePath;
                SaveImage(bitmap, HttpContext.Current.Server.MapPath(savepath), GetCodecInfo((string)htmimes[sExt]));
            }
            catch (System.Exception e)
            {
                throw e;
            }
            finally
            {
                bitmap.Dispose();
                graphics.Dispose();
            }
        }
        #endregion
    }
}

    
 
 

您可能感兴趣的文章:

  • c#正则过滤图片标签 asp.net正则过滤的例子
  • C# 图片与二进制转换的简单实例
  • C#实现动态显示及动态移除图片方法
  • C#给picturebox控件加图片选中状态的2个方法
  • 基于C# winform实现图片上传功能的方法
  • C#实现图片放大功能的按照像素放大图像方法
  • C#实现把彩色图片灰度化代码分享
  • c#读取图像保存到数据库(数据库保存图片)实例
  • C#判断上传文件是否是图片以防止木马上传的方法
  • C#实现将网页保存成图片的网页拍照功能
  • c#实现图片与字节流相互转换的代码
  • C# 将字节流转换为图片的实例方法
  • c#图片处理之图片裁剪成不规则图形
  • c# Base64编码和图片的互相转换代码
  • C#保存图片到数据库并读取显示图片的方法
  • c#读取图像保存到数据库中(数据库保存图片)
  • C# 将透明图片的非透明区域转换成Region的实例代码
  • C#操作图片读取和存储SQLserver实现代码
  • C# 判断两张图片是否一致的快速方法
  • C#中按指定质量保存图片的实例代码
  • php文字水印和php图片水印实现代码(二种加水印方法)
  • asp.net在图片上添加水印效果的代码示例
  • asp.net上传图片加防伪图片水印并写入数据库的代码一例
  • linux下采用shell脚本实现批量为指定文件夹下图片添加水印的方法
  • java 图片加水印实例代码
  • php实现图片添加水印功能
  • php为png/jpg/gif格式图片添加水印
  • c#添加图片水印类的代码举例
  • 图片缩略图 水印处理 Nginx Image Module
  • php图片添加水印示例
  • c#图片添加水印的实例代码
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • PHP 图片缩略图库 PHPThumb
  • Jquery 动态实现图片缩略的代码
  • php获取exif图片缩略图的例子
  • PHP图片等比例缩放生成缩略图函数分享
  • PHP等比例缩放图片生成缩略图函数的例子
  • 深入分析WPF客户端读取高清图片卡以及缩略图的解决方法详解
  • 使用gd库实现php服务端图片裁剪和生成缩略图功能分享
  • php gd库实现服务端图片裁剪与缩略图
  • 鼠标滑过缩略图时放大图片(纯Css)
  • php图片裁剪与缩略图示例
  • Android获取SD卡上图片和视频缩略图的小例子
  • php实现上传图片生成缩略图示例
  • c#(asp.net)图片上传且生成高清缩略图的代码
  • c#多图片上传并生成缩略图的代码
  • android 获取视频,图片缩略图的具体实现
  • c#生成图片缩略图的实例与思路分享
  • c#(vb.net)上传图片并生成缩略图的实现代码
  • iphone cocos2d 精灵的动画效果(图片,纹理,帧)CCAnimation实现
  • JS点击图片改变图片图径并用正则表达式取图片名的代码
  • Python3通过request.urlopen实现Web网页图片下载
  • Android 图片浏览器 雪梦图片浏览器
  • android中知道图片name时获取图片的简单方法
  • css为图片设置背景图片
  • android图像绘制(六)获取本地图片或拍照图片等图片资源
  • 有没有可以从已知图片里过滤出,不规则图片的滤镜??
  • 怎么让客户端从服务器下载图片后,看不到图片的最后修改时间
  • 如何将一个彩色bmp图片转换成黑白图片,急用
  • 查询图片,图片文件存放在数据库中好,还是存放路径好,是否有更好的解决办法
  • 图片和jlabel的大小不相同,怎样让图片充满整个jlabel?
  • PHP正则匹配图片并给图片加链接详解
  • phpphp图片采集后按原路径保存图片示例


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3