asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式


asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式在网站开发时,生成缩略图是一个非常常见和实用的功能.以前在asp里只能借助com组件实现,现在在.net里可以利用框架的强大的类库轻松实现.下面帖出完整的代码(带详细注释),参考了网上的一些文章及.net sdk相关内容.QQROOM网络家园的图片上传用到了所有的4种生成方式.
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式        
/// <summary>
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式        
/// 生成缩略图
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式        
/// </summary>
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式        
/// <param name="originalImagePath">源图路径(物理路径)</param>
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式        
/// <param name="thumbnailPath">缩略图路径(物理路径)</param>
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式        
/// <param name="width">缩略图宽度</param>
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式        
/// <param name="height">缩略图高度</param>
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式        
/// <param name="mode">生成缩略图的方式</param>    

asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式        public static void MakeThumbnail(string originalImagePath, string thumbnailPath, int width, int height, string mode)
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式        
{
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            Image originalImage 
= Image.FromFile(originalImagePath);
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
int towidth = width;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
int toheight = height;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式        
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
int x = 0;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
int y = 0;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
int ow = originalImage.Width;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
int oh = originalImage.Height;        
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
switch (mode)
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
{        
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                
case "HW"://指定高宽缩放(可能变形)                
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
                    break;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                
case "W"://指定宽,高按比例                    
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
                    toheight = originalImage.Height * width/originalImage.Width;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                    
break;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                
case "H"://指定高,宽按比例
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
                    towidth = originalImage.Width * height/originalImage.Height;                    
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                    
break;        
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                
case "Cut"://指定高宽裁减(不变形)                
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
                    if((double)originalImage.Width/(double)originalImage.Height > (double)towidth/(double)toheight)
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                    
{
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                        oh 
= originalImage.Height;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                        ow 
= originalImage.Height*towidth/toheight;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                        y 
= 0;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                        x 
= (originalImage.Width - ow)/2;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                    }

asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                    
else
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                    
{
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                        ow 
= originalImage.Width;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                        oh 
= originalImage.Width*height/towidth;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                        x 
= 0;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                        y 
= (originalImage.Height - oh)/2;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                    }

asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                    
break;                    
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                
default :
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                    
break;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            }
    
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
//新建一个bmp图片
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
            Image bitmap = new System.Drawing.Bitmap(towidth,toheight);
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
//新建一个画板
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
            Graphics g = System.Drawing.Graphics.FromImage(bitmap);
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
//设置高质量插值法
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
            g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
//设置高质量,低速度呈现平滑程度
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
            g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
//清空画布并以透明背景色填充
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
            g.Clear(Color.Transparent);        
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
//在指定位置并且按指定大小绘制原图片的指定部分
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
            g.DrawImage(originalImage, new Rectangle(00, towidth, toheight), 
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                
new Rectangle(x, y, ow,oh),
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                GraphicsUnit.Pixel);
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
try
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
{            
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                
//以jpg格式保存缩略图
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
                bitmap.Save(thumbnailPath, System.Drawing.Imaging.ImageFormat.Jpeg);
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            }

asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
catch(System.Exception e)
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
{
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                
throw e;
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            }

asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
finally
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            
{
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                originalImage.Dispose();
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                bitmap.Dispose();                        
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式                g.Dispose();
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式            }

asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式        }

asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式关键方法Graphics.DrawImage见ms
-help://MS.NETFrameworkSDKv1.1.CHS/cpref/html/frlrfsystemdrawinggraphicsclassdrawimagetopic11.htm
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式

asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式




本文转自高海东博客园博客,原文链接:http://www.cnblogs.com/ghd258/archive/2006/02/26/337957.html,如需转载请自行联系原作者
上一篇:springboot项目mysql更改数据库为sqlserver


下一篇:【为什么vue2中的data必须是一个函数呢?】