保持比例图像缩放简易算法

  1. public struct PicSize   
  2. {   
  3.   public int Width;   
  4.   public int Height;   
  5. }   
  6. public static PicSize AdjustSize(int spcWidth, int spcHeight, int orgWidth, int orgHeight)   
  7. {   
  8.   PicSize size = new PicSize();   
  9.   // 原始宽高在指定宽高范围内,不作任何处理   
  10.   if (orgWidth <= spcWidth && orgHeight <= spcHeight)   
  11.   {   
  12.     size.Width = orgWidth;   
  13.     size.Height = orgHeight;   
  14.   }   
  15.   else  
  16.   {   
  17.     // 取得比例系数   
  18.     float w = orgWidth / (float)spcWidth;   
  19.     float h = orgHeight / (float)spcHeight;   
  20.     // 宽度比大于高度比   
  21.     if (w > h)   
  22.     {   
  23.       size.Width = spcWidth;   
  24.       size.Height = (int)(w >= 1 ? Math.Round(orgHeight / w) : Math.Round(orgHeight * w));   
  25.     }   
  26.     // 宽度比小于高度比   
  27.     else if (w < h)   
  28.     {   
  29.       size.Height = spcHeight;   
  30.       size.Width = (int)(h >= 1 ? Math.Round(orgWidth / h) : Math.Round(orgWidth * h));   
  31.     }   
  32.     // 宽度比等于高度比   
  33.     else  
  34.     {   
  35.       size.Width = spcWidth;   
  36.       size.Height = spcHeight;   
  37.     }   
  38.   }   
  39.   return size;   
  40. }  

你可能感兴趣的:(算法,float)