您好,登錄后才能下訂單哦!
這篇文章主要介紹“C#怎么改變圖片大小并且重命名”,在日常操作中,相信很多人在C#怎么改變圖片大小并且重命名問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C#怎么改變圖片大小并且重命名”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
添加NuGet包
選擇最新版就好了
安裝完成后右鍵項(xiàng)目重新生成方案
使用OpenCvSharp.CPlusPlus命名空間
using OpenCvSharp.CPlusPlus;
寫一個(gè)函數(shù)用來改變圖片大小并且重新命名
read_path是存儲圖片的文件夾的路徑,write_path是改變后圖片存儲的文件夾路徑,filename是圖片重命名,width和height分別為圖片修改后的寬和高
public static void ResizeImg(String read_path,String write_path,String filename,double width,double height) { Mat img1 = new Mat(read_path); Mat img2 = img1; OpenCvSharp.CPlusPlus.Size size = new OpenCvSharp.CPlusPlus.Size(width, height); Cv2.Resize(img1, img2, size, 0, 0); Cv2.ImWrite(write_path+"\\"+ filename, img2); }
在Main函數(shù)中使用該函數(shù)
static void Main(string[] args) { string dir_path = @"G:\TestImg";//讀取路徑 String write_path = "G:\\TestImg2";//存儲路徑 String[] filenames=Directory.GetFiles(dir_path); for (int i = 0; i < filenames.Length; i++) { ResizeImg(filenames[i], write_path, i + ".png", 200, 300); } Console.ReadKey(); }
運(yùn)行結(jié)果
完整代碼
using System;using System.Collections.Generic;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using OpenCvSharp;using OpenCvSharp.CPlusPlus;using System.Runtime.InteropServices;using System.IO;namespace ResizeTest{ class Program { static void Main(string[] args) { string dir_path = @"G:\TestImg";//讀取路徑 String write_path = "G:\\TestImg2";//存儲路徑 String[] filenames=Directory.GetFiles(dir_path); for (int i = 0; i < filenames.Length; i++) { ResizeImg(filenames[i], write_path, i + ".png", 200, 300); } Console.ReadKey(); } public static void ResizeImg(String read_path,String write_path,String filename,double width,double height) { Mat img1 = new Mat(read_path); Mat img2 = img1; OpenCvSharp.CPlusPlus.Size size = new OpenCvSharp.CPlusPlus.Size(width, height); Cv2.Resize(img1, img2, size, 0, 0); Cv2.ImWrite(write_path+"\\"+ filename, img2); } } }
到此,關(guān)于“C#怎么改變圖片大小并且重命名”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。