.NET C#生成缩略图

/**  
       /// 生成缩略图 
       ///  
       /// 源图路径(物理路径) 
       /// 缩略图路径(物理路径) 
       /// 缩略图宽度 
       /// 缩略图高度 
       /// 生成缩略图的方式     
       public static void MakeThumbnail(string originalImagePath, string thumbnailPath, int width, int height, string mode) 
       { 
           Image originalImage = Image.FromFile(originalImagePath); 
           int towidth = width; 
           int toheight = height;   
           int x = 0; 
           int y = 0; 
           int ow = originalImage.Width; 
           int oh = originalImage.Height;         
           switch (mode) 
           {         
               c

你可能感兴趣的:(.Net基础-c#,C#生成缩略图)