吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 4126|回复: 2
收起左侧

[其他转载] [GDI+] 生成缩略图的类文件SmallImage

[复制链接]
HaloMaple 发表于 2014-4-23 09:46
[C#] 纯文本查看 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.IO;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace SystemImage
{
    public class SmallImage
    {
        //产生缩略图,高是100像素,宽按比例缩小
        public static void GetSmallImage(string originalImagePath, string thumbnailPath, int width, int height)
        {
            System.Drawing.Image originalImage = System.Drawing.Image.FromFile(originalImagePath);
            if (originalImage.Width < originalImage.Height)
            {
                width = originalImage.Width * width / originalImage.Height;//按比例指定宽度,高度固定不变,是100个像素,整个图像按比例缩小            
            }
            else
            {
                height = originalImage.Height * height / originalImage.Width;
            }
            System.Drawing.Image bitmap = new System.Drawing.Bitmap(width,height);            
            Graphics g = System.Drawing.Graphics.FromImage(bitmap);
            g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.Low;//.HighQualityBicubic;//设置高质量插值法            
            g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.Default;//.HighQuality;//设置高质量,低速度呈现平滑程度           
            g.Clear(Color.Transparent); //清空画布并以透明背景色填充
            g.DrawImage(originalImage, new Rectangle(0, 0, width, height), new Rectangle(0, 0, originalImage.Width, originalImage.Height), GraphicsUnit.Pixel);
            bitmap.Save(thumbnailPath, System.Drawing.Imaging.ImageFormat.Jpeg);
            originalImage.Dispose(); 
            bitmap.Dispose();
            g.Dispose();           
        }
 
        //检查大图像,如果宽超过四百,或高超过六百,就按比例缩放
        public static bool CheckBigAreaImg(string url,string newUrl)
        {
            bool result = false;
            using (System.Drawing.Image img = Bitmap.FromFile(url))
            {
                int height = img.Size.Height;//获得用户上传图片的宽度和高度
                int width = img.Size.Width;               
          
                if (height > 800 || width > 530)
                {
                    result = true;
                    GetSmallImage(url, newUrl, 500, 500);
                } 
            }
            if (result)
            {
                File.Delete(url);
            }
            return result;
        }
    }    
}

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

wi5101 发表于 2014-4-23 09:51
上传张成品图片吧
风雨飘摇 发表于 2014-4-23 10:26
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-15 22:48

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表