Asp.net mvc實時生成縮率圖到硬盤
來源:易賢網(wǎng) 閱讀:843 次 日期:2016-08-09 14:50:03
溫馨提示:易賢網(wǎng)小編為您整理了“Asp.net mvc實時生成縮率圖到硬盤”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了Asp.net mvc實時生成縮率圖到硬盤的相關(guān)資料,需要的朋友可以參考下

對于縮率圖的處理是在圖片上傳到服務(wù)器之后,同步生成兩張不同尺寸的縮率供前端調(diào)用,剛開始還能滿足需求,慢慢的隨著前端展示的多樣化,縮率圖已不能前端展示的需求,所以考慮做一個實時生成圖片縮率圖服務(wù)。

每次調(diào)用實時生成縮率圖,不緩存著實有點浪費,所以在生成縮率的同時緩存到硬盤一份,效率提高很多。

之前從網(wǎng)上看了一下有人用nginx + lua實現(xiàn)的,效率那是沒什么可說的,但是時間緊迫,自己也沒時間去研究,所以暫時先用aps.net mvc4來實現(xiàn) 一個,以后有時間了,再慢慢修改。

用自己熟悉的.net性能可能差那么一點點,但是實現(xiàn)速度快,保證可以在極端的時間內(nèi)上線,并且在功能上更強。

思路很簡單,就是根據(jù)請求,判斷需要的縮率圖是否已存在于硬盤上,如果有直接返回,沒有則下載原圖,并生成縮率圖到本地,返回給客戶端。

下面直接粘貼代碼片段:

/// <summary>

 /// 生成圖片縮率圖Action

 /// </summary>

 /// <param name="p">原圖url</param>

 /// <param name="id">圖片尺寸以及生成縮率圖的類型</param>

 /// <returns></returns>

 [ValidateInput(false)]

 public ActionResult Index(string p, string id)

 {

  if (string.IsNullOrEmpty(p))

  {

  return new HttpStatusCodeResult(404);

  }

  string oPath = Regex.Replace(p, @"http[s]?://(.*?)/", "/", RegexOptions.IgnoreCase);

  int? oWidth = 200, oHeight = 200;

  int cutMode = 3;

  string pPath;

  string oDir;

  if (!string.IsNullOrEmpty(id))

  {

  string[] ss = id.Split(new char[] { '_' }, StringSplitOptions.RemoveEmptyEntries);

  if (ss.Length < 2)

  {

   return new HttpStatusCodeResult(404);

  }

  if (ss.Length > 2)

  {

   cutMode = int.Parse(ss[2]);

  }

  oPath = oPath.Insert(oPath.LastIndexOf('/') + 1, string.Format("{0}_{1}_{2}_", ss[0], ss[1], cutMode));

  oWidth = int.Parse(ss[0]);

  oHeight = int.Parse(ss[1]);

  }

  pPath = Server.MapPath(oPath);

  oDir = Path.GetDirectoryName(pPath);

  if (!System.IO.File.Exists(pPath))

  {

  byte[] imagebytes = FileHelper.DownLoadFile(p);

  if (!Directory.Exists(oDir))

  {

   Directory.CreateDirectory(oDir);

  }

  FileHelper.MakeThumbnail(FileHelper.BytToImg(imagebytes), oWidth.Value, oHeight.Value, (ThumbnailMode)cutMode, pPath, true);

  }

  return File(pPath, FileHelper.GetContentTypeByExtension(Path.GetExtension(pPath).ToLower()));

 }

輔助方法:

public class FileHelper

{

 /// <summary>

/// 圖片后綴和ContentType對應(yīng)字典

/// </summary>

static Dictionary<string, string> extensionContentTypeDic;

static FileHelper()

{

 if (extensionContentTypeDic == null)

 {

 //.jpg", ".png", ".gif", ".jpeg

 extensionContentTypeDic = new Dictionary<string, string>();

 extensionContentTypeDic.Add(".jpg", "image/jpeg");

 extensionContentTypeDic.Add(".png", "image/png");

 extensionContentTypeDic.Add(".gif", "image/gif");

 extensionContentTypeDic.Add(".jpeg", "image/jpeg");

 }

}

/// <summary>

/// 根據(jù)后綴名獲取extension

/// </summary>

/// <param name="extension"></param>

/// <returns></returns>

public static string GetContentTypeByExtension(string extension)

{

 if (extensionContentTypeDic.ContainsKey(extension))

 {

 return extensionContentTypeDic[extension];

 }

 return null;

}

/// <summary > 

/// 將Image對象轉(zhuǎn)化成二進制流 

/// </summary > 

/// <param name="image" > </param > 

/// <returns > </returns > 

public static byte[] ImageToByteArray(Image image)

{

 MemoryStream imageStream = new MemoryStream();

 Bitmap bmp = new Bitmap(image.Width, image.Height);

 Graphics g = Graphics.FromImage(bmp);

 g.DrawImage(image, new System.Drawing.Rectangle(0, 0, image.Width, image.Height));

 try

 {

 bmp.Save(imageStream, image.RawFormat);

 }

 catch (Exception e)

 {

 bmp.Save(imageStream, System.Drawing.Imaging.ImageFormat.Jpeg);

 }

 byte[] byteImg = imageStream.GetBuffer();

 bmp.Dispose();

 g.Dispose();

 imageStream.Close();

 return byteImg;

}

/// <summary> 

/// 字節(jié)流轉(zhuǎn)換成圖片 

/// </summary> 

/// <param name="byt">要轉(zhuǎn)換的字節(jié)流</param> 

/// <returns>轉(zhuǎn)換得到的Image對象</returns> 

public static Image BytToImg(byte[] byt)

{

 MemoryStream ms = new MemoryStream(byt);

 Image img = Image.FromStream(ms);

 ms.Close();

 return img;

}

/// <summary>

/// 生成縮率圖

/// </summary>

/// <param name="originalImage">原始圖片Image</param>

/// <param name="width">縮率圖寬</param>

/// <param name="height">縮率圖高</param>

/// <param name="mode">生成縮率圖的方式</param>

/// <param name="thumbnailPath">縮率圖存放的地址</param>

public static Image MakeThumbnail(Image originalImage, int width, int height, ThumbnailMode mode, string thumbnailPath, bool isSave = true)

{

 int towidth = width;

 int toheight = height;

 int x = 0;

 int y = 0;

 int ow = originalImage.Width;

 int oh = originalImage.Height;

 switch (mode)

 {

 case ThumbnailMode.HW://指定高寬縮放(可能變形)   

  break;

 case ThumbnailMode.W://指定寬,高按比例   

  toheight = originalImage.Height * width / originalImage.Width;

  break;

 case ThumbnailMode.H://指定高,寬按比例 

  towidth = originalImage.Width * height / originalImage.Height;

  break;

 case ThumbnailMode.Cut://指定高寬裁減(不變形)   

  if ((double)originalImage.Width / (double)originalImage.Height > (double)towidth / (double)toheight)

  {

  oh = originalImage.Height;

  ow = originalImage.Height * towidth / toheight;

  y = 0;

  x = (originalImage.Width - ow) / 2;

  }

  else

  {

  ow = originalImage.Width;

  oh = originalImage.Width * height / towidth;

  x = 0;

  y = (originalImage.Height - oh) / 2;

  }

  break;

 default:

  break;

 }

 //新建一個bmp圖片 

 System.Drawing.Image bitmap = new System.Drawing.Bitmap(towidth, toheight);

 //新建一個畫板 

 Graphics g = System.Drawing.Graphics.FromImage(bitmap);

 //設(shè)置高質(zhì)量插值法 

 g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;

 //設(shè)置高質(zhì)量,低速度呈現(xiàn)平滑程度 

 g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;

 //清空畫布并以透明背景色填充 

 g.Clear(Color.Transparent);

 //在指定位置并且按指定大小繪制原圖片的指定部分 

 g.DrawImage(originalImage, new Rectangle(0, 0, towidth, toheight),

 new Rectangle(x, y, ow, oh),

 GraphicsUnit.Pixel);

 if (!isSave)

 {

 return bitmap;

 }

 try

 {

 //以jpg格式保存縮略圖 

 //bitmap.Save(thumbnailPath, bitmap.RawFormat);

 bitmap.Save(thumbnailPath, ImageFormat.Jpeg);

 return bitmap;

 }

 catch (System.Exception e)

 {

 throw e;

 }

 finally

 {

 originalImage.Dispose();

 bitmap.Dispose();

 g.Dispose();

 }

 return null;

}

/// <summary>

/// 下載指定文件

/// </summary>

/// <param name="remoteUrl"></param>

/// <param name="ss"></param>

public static byte[] DownLoadFile(string remoteUrl)

{

 WebClient wc = new WebClient();

 try

 {

 return wc.DownloadData(remoteUrl);

 }

 catch (Exception e)

 {

 throw new Exception("下載文件失敗");

 }

}

}

public enum ThumbnailMode

{

/// <summary>

/// 指定高寬縮放(可能變形)

/// </summary>

HW,

/// <summary>

/// 指定高,寬按比例

/// </summary>

H,

/// <summary>

/// 指定寬,高按比例

/// </summary>

W,

/// <summary>

/// 指定高寬裁減(不變形) 

/// </summary>

Cut,

}

訪問方式:

http://www.souji8.com/Home/Index/{width}_{height}_{ThumMode}?p={imageUrl}

{imageUrl}:目標(biāo)圖片地址

{ThumMode}: 1:指定高寬按比例、2:指定寬,高按比例、3:指定高寬裁減(不變形)

{Width}:期望圖片寬

{Height}:期望圖片高

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助。

更多信息請查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機網(wǎng)站地址:Asp.net mvc實時生成縮率圖到硬盤
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65317125(9:00—18:00) 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報警專用圖標(biāo)