本篇文章給大家分享的是有關(guān)使用.Net怎么上傳圖片縮略圖,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
成都創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),安寧企業(yè)網(wǎng)站建設(shè),安寧品牌網(wǎng)站建設(shè),網(wǎng)站定制,安寧網(wǎng)站建設(shè)報價,網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,安寧網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競爭力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。/// <summary> /// 生成縮略圖或質(zhì)量壓縮 /// </summary> /// <param name="sourcePath">源圖路徑(物理路徑)</param> /// <param name="targetPath">縮略圖路徑(物理路徑)</param> /// <param name="width">縮略圖寬度,如果寬度為0則不縮略</param> /// <param name="height">縮略圖高度,如果高度為0則不縮略</param> /// <param name="mode">生成縮略圖的方式,默認(rèn)為空,為空則不縮略高寬[HW 指定高寬縮放(不變形);W 指定寬,高按比例;H 指定高,寬按比例;CUT 指定高寬裁減(不變形)]</param> /// <param name="flag">壓縮質(zhì)量(數(shù)字越小壓縮率越高)1-100</param> /// <param name="size">壓縮后圖片的較大大小,0為不限制大小</param> public static void MakeThumbnail(string sourcePath, string targetPath, int width = 0, int height = 0, string mode = "", int flag = 100, int size = 0) { Image sourceImage = null; Image bitmap = null; Graphics g = null; EncoderParameters ep = null; EncoderParameter eParam = null; try { sourceImage = Image.FromFile(sourcePath); int toWidth = 0; if (width > 0) { toWidth = width; } else { toWidth = sourceImage.Width; } int toHeight = 0; if (height > 0) { toHeight = height; } else { toHeight = sourceImage.Height; } int x = 0; int y = 0; int ow = sourceImage.Width; int oh = sourceImage.Height; if (width > 0 && height > 0 && !string.IsNullOrWhiteSpace(mode)) { switch (mode.ToUpper()) { case "HW"://指定高寬縮放(不變形) int tempheight = sourceImage.Height * width / sourceImage.Width; if (tempheight > height) { toWidth = sourceImage.Width * height / sourceImage.Height; } else { toHeight = sourceImage.Height * width / sourceImage.Width; } break; case "W"://指定寬,高按比例 toHeight = sourceImage.Height * width / sourceImage.Width; break; case "H"://指定高,寬按比例 toWidth = sourceImage.Width * height / sourceImage.Height; break; case "CUT"://指定高寬裁減(不變形) if ((double)sourceImage.Width / (double)sourceImage.Height > (double)toWidth / (double)toHeight) { oh = sourceImage.Height; ow = sourceImage.Height * toWidth / toHeight; y = 0; x = (sourceImage.Width - ow) / 2; } else { ow = sourceImage.Width; oh = sourceImage.Width * height / toWidth; x = 0; y = (sourceImage.Height - oh) / 2; } break; } } //新建一個bmp圖片 bitmap = new Bitmap(toWidth, toHeight); //新建一個畫板 g = Graphics.FromImage(bitmap); g.CompositingQuality = CompositingQuality.HighQuality; //設(shè)置高質(zhì)量插值法 g.InterpolationMode = InterpolationMode.HighQualityBicubic; //設(shè)置高質(zhì)量,低速度呈現(xiàn)平滑程度 g.SmoothingMode = SmoothingMode.HighQuality; //清空畫布并以透明背景色填充 g.Clear(Color.Transparent); //在指定位置并且按指定大小繪制原圖片的指定部分 g.DrawImage(sourceImage, new Rectangle(0, 0, toWidth, toHeight), new Rectangle(x, y, ow, oh), GraphicsUnit.Pixel); //以下代碼為保存圖片時,設(shè)置壓縮質(zhì)量 ep = new EncoderParameters(); long[] qy = new long[1]; qy[0] = flag;//設(shè)置壓縮的比例1-100 eParam = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, qy); ep.Param[0] = eParam; ImageCodecInfo[] arrayICI = ImageCodecInfo.GetImageEncoders();//獲取圖像編碼器的信息 ImageCodecInfo jpegICIinfo = null; for (int i = 0; i < arrayICI.Length; i++) { if (arrayICI[i].FormatDescription.Equals("JPEG")) { jpegICIinfo = arrayICI[i]; break; } } if (jpegICIinfo != null) { bitmap.Save(targetPath, jpegICIinfo, ep); FileInfo fiTarget = new FileInfo(targetPath); if (size > 0 && fiTarget.Length > 1024 * size) { flag = flag - 10; MakeThumbnail(sourcePath, targetPath, width, height, mode, flag, size); } } else { //以jpg格式保存縮略圖 bitmap.Save(targetPath, ImageFormat.Jpeg); } } catch (System.Exception ex) { throw ex; } finally { if (sourceImage != null) { sourceImage.Dispose(); } if (bitmap != null) { bitmap.Dispose(); } if (g != null) { g.Dispose(); } if (ep != null) { ep.Dispose(); } if (eParam != null) { eParam.Dispose(); } } }
以上就是使用.Net怎么上傳圖片縮略圖,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
網(wǎng)頁名稱:使用.Net怎么上傳圖片縮略圖-創(chuàng)新互聯(lián)
網(wǎng)站URL:http://jinyejixie.com/article2/dcgpoc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供關(guān)鍵詞優(yōu)化、商城網(wǎng)站、Google、網(wǎng)站內(nèi)鏈、網(wǎng)站收錄、電子商務(wù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容