知識(shí)
不管是網(wǎng)站,軟件還是小程序,都要直接或間接能為您產(chǎn)生價(jià)值,我們在追求其視覺表現(xiàn)的同時(shí),更側(cè)重于功能的便捷,營銷的便利,運(yùn)營的高效,讓網(wǎng)站成為營銷工具,讓軟件能切實(shí)提升企業(yè)內(nèi)部管理水平和效率。優(yōu)秀的程序?yàn)楹笃谏壧峁┍憬莸闹С郑?
C# 生成縮略圖方法
發(fā)表時(shí)間:2021-3-19
發(fā)布人:葵宇科技
瀏覽次數(shù):56
拿記事本寫的,沒有調(diào)試,大概就是這么個(gè)原理,參考參考得了~
可以按寬度,高度縮放及指定高寬裁剪
private void MakeThumbnail(string sourcePath, string newPath, int width, int height)
{
System.Drawing.Image ig = System.Drawing.Image.FromFile(sourcePath);
int towidth = width;
int toheight = height;
int x = 0;
int y = 0;
int ow = ig.Width;
int oh = ig.Height;
if (height == 0)
{
toheight = oh * width / ow;
}
else if (width == 0)
{
towidth = ow * height / oh;
}
else
{
if ((double)ig.Width / (double)ig.Height > (double)towidth / (double)toheight)
{
oh = ig.Height;
ow = ig.Height * towidth / toheight;
y = 0;
x = (ig.Width - ow) / 2;
}
else
{
ow = ig.Width;
oh = ig.Width * height / towidth;
x = 0;
y = (ig.Height - oh) / 2;
}
}
System.Drawing.Image bitmap = new System.Drawing.Bitmap(towidth, toheight);
System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(bitmap);
g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
g.Clear(System.Drawing.Color.Transparent);
g.DrawImage(ig, new System.Drawing.Rectangle(0, 0, towidth, toheight), new System.Drawing.Rectangle(x, y, ow, oh), System.Drawing.GraphicsUnit.Pixel);
try
{
bitmap.Save(newPath, System.Drawing.Imaging.ImageFormat.Jpeg);
}
catch (Exception ex)
{
throw ex;
}
finally
{
ig.Dispose();
bitmap.Dispose();
g.Dispose();
}
}
相關(guān)案例查看更多
相關(guān)閱讀
- 云南網(wǎng)站建設(shè)招商
- 報(bào)廢車拆解回收管理系統(tǒng)
- 楚雄小程序開發(fā)
- 網(wǎng)站建設(shè)制作
- 保山小程序開發(fā)
- 云南做軟件
- 云南花農(nóng)小程序
- 報(bào)廢車回收管理軟件
- 云南網(wǎng)站建設(shè)高手
- 汽車報(bào)廢管理
- 排名
- 支付寶小程序被騙
- 小程序密鑰
- 網(wǎng)站建設(shè)首頁
- 網(wǎng)絡(luò)公司哪家好
- 云南旅游網(wǎng)站建設(shè)
- 云南電商網(wǎng)站建設(shè)
- 小程序表單
- 小程序公司
- 網(wǎng)絡(luò)營銷
- 江蘇小程序開發(fā)
- 云南小程序開發(fā)制作
- 小程序退款
- 小程序被騙
- 分銷系統(tǒng)
- 云南網(wǎng)站建設(shè)
- 前端開發(fā)
- 百度小程序開發(fā)公司
- asp網(wǎng)站
- 云南小程序開發(fā)公司哪家好