using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.IO;
namespace ConsoleApplication3_ThumbnailImg
{
class Program
{
const int HEIGHT = 190;
const int WIDTH = 190;
static void Main(string[] args)
{
string srcImgPath = @"G:\photoes\20060725\Picture 057.jpg";
string targetFolder = @"E:\Diary\Test\thumbnail";
SetThumbnail_1(srcImgPath, targetFolder);
SetThumbnail_2(srcImgPath, targetFolder);
SetThumbnail_3(srcImgPath, targetFolder);
Console.Read();
}
static void SetThumbnail_1(string srcImgPath, string targetFolder)
{
using (Bitmap source = new Bitmap(srcImgPath))
{
// return the source image if it's smaller than the designated thumbnail
int wi, hi;
wi = WIDTH;
hi = HEIGHT;
// maintain the aspect ratio despite the thumbnail size parameters
if (source.Width > source.Height)
{
wi = WIDTH;
hi = (int)(source.Height * ((decimal)WIDTH / source.Width));
}
else
{
hi = HEIGHT;
wi = (int)(source.Width * ((decimal)HEIGHT / source.Height));
}
using (Image thumb = source.GetThumbnailImage(wi, hi, null, IntPtr.Zero))
{
string targetPath = Path.Combine(targetFolder, "th_1.jpg");
thumb.Save(targetPath);
}
}
}
static void SetThumbnail_2(string srcImgPath, string targetFolder)
{
using (Bitmap source = new Bitmap(srcImgPath))
{
// return the source image if it's smaller than the designated thumbnail
int wi, hi;
wi = WIDTH;
hi = HEIGHT;
// maintain the aspect ratio despite the thumbnail size parameters
if (source.Width > source.Height)
{
wi = WIDTH;
hi = (int)(source.Height * ((decimal)WIDTH / source.Width));
}
else
{
hi = HEIGHT;
wi = (int)(source.Width * ((decimal)HEIGHT / source.Height));
}
// original code that creates lousy thumbnails
// System.Drawing.Image ret = source.GetThumbnailImage(wi,hi,null,IntPtr.Zero);
using (System.Drawing.Bitmap thumb = new Bitmap(wi, hi))
{
using (Graphics g = Graphics.FromImage(thumb))
{
g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
g.FillRectangle(Brushes.White, 0, 0, wi, hi);
g.DrawImage(source, 0, 0, wi, hi);
}
string targetPath = Path.Combine(targetFolder, "th_2.jpg");
thumb.Save(targetPath);
}
}
}
static void SetThumbnail_3(string srcImgPath, string targetFolder)
{
//Configure JPEG Compression Engine
System.Drawing.Imaging.EncoderParameters encoderParams = new System.Drawing.Imaging.EncoderParameters();
long[] quality = new long[1];
quality[0] = 75;
System.Drawing.Imaging.EncoderParameter encoderParam = new System.Drawing.Imaging.EncoderParameter(System.Drawing.Imaging.Encoder.Quality, quality);
encoderParams.Param[0] = encoderParam;
System.Drawing.Imaging.ImageCodecInfo[] arrayICI = System.Drawing.Imaging.ImageCodecInfo.GetImageEncoders();
System.Drawing.Imaging.ImageCodecInfo jpegICI = null;
for (int x = 0; x < arrayICI.Length; x++)
{
if (arrayICI[x].FormatDescription.Equals("JPEG"))
{
jpegICI = arrayICI[x];
break;
}
}
using (Bitmap source = new Bitmap(srcImgPath))
{
int wi, hi;
wi = WIDTH;
hi = HEIGHT;
// maintain the aspect ratio despite the thumbnail size parameters
if (source.Width > source.Height)
{
wi = WIDTH;
hi = (int)(source.Height * ((decimal)WIDTH / source.Width));
}
else
{
hi = HEIGHT;
wi = (int)(source.Width * ((decimal)HEIGHT / source.Height));
}
// original code that creates lousy thumbnails
// System.Drawing.Image ret = source.GetThumbnailImage(wi,hi,null,IntPtr.Zero);
using (System.Drawing.Bitmap thumb = new Bitmap(wi, hi))
{
using (Graphics g = Graphics.FromImage(thumb))
{
g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
g.FillRectangle(Brushes.White, 0, 0, wi, hi);
g.DrawImage(source, 0, 0, wi, hi);
}
string targetPath = Path.Combine(targetFolder, "th_3.jpg");
thumb.Save(targetPath, jpegICI, encoderParams);
}
}
}
}
} 0
0
相关文章
C# MAUI怎么使用C# Markup编写UI MAUI C# UI教程
c# 如何用C#代码触发一次GC回收 Full GC
c# C#中的幽灵读和不可重复读怎么在代码层面避免
c# solid原则是什么
blazor 是什么 blazor和vue/react对比
本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门AI工具
相关专题
在拼多多上赚钱主要可以通过无货源模式一件代发、精细化运营特色店铺、参与官方高流量活动、利用拼团机制社交裂变,以及成为多多进宝推广员这5种方法实现。核心策略在于通过低成本、高效率的供应链管理与营销,利用平台社交电商红利实现盈利。
28
2026.01.26
在Edge浏览器中设置主页,请依次点击右上角“...”图标 > 设置 > 开始、主页和新建标签页。在“Microsoft Edge 启动时”选择“打开以下页面”,点击“添加新页面”并输入网址。若要使用主页按钮,需在“外观”设置中开启“显示主页按钮”并设定网址。
8
2026.01.26
苹果官方查询网站主要通过 checkcoverage.apple.com/cn/zh/ 进行,可用于查询序列号(SN)对应的保修状态、激活日期及技术支持服务。此外,查找丢失设备请使用 iCloud.com/find,购买信息与物流可访问 Apple (中国大陆) 订单状态页面。
31
2026.01.26
NPD(Narcissistic Personality Disorder)即自恋型人格障碍,是一种心理健康问题,特点是极度夸大自我重要性、需要过度赞美与关注,同时极度缺乏共情能力,背后常掩藏着低自尊和不安全感,影响人际关系、工作和生活,通常在青少年时期开始显现,需由专业人士诊断。
3
2026.01.26
关闭Windows安全中心(Windows Defender)可通过系统设置暂时关闭,或使用组策略/注册表永久关闭。最简单的方法是:进入设置 > 隐私和安全性 > Windows安全中心 > 病毒和威胁防护 > 管理设置,将实时保护等选项关闭。
5
2026.01.26
铁路12306提供起售时间查询、起售提醒、购票预填、候补购票及误购限时免费退票五项服务,并强调官方渠道唯一性与信息安全。
35
2026.01.26
以工资薪金所得为例,应纳税额 = 应纳税所得额 × 税率 - 速算扣除数。应纳税所得额 = 月度收入 - 5000 元 - 专项扣除 - 专项附加扣除 - 依法确定的其他扣除。假设某员工月工资 10000 元,专项扣除 1000 元,专项附加扣除 2000 元,当月应纳税所得额为 10000 - 5000 - 1000 - 2000 = 2000 元,对应税率为 3%,速算扣除数为 0,则当月应纳税额为 2000×3% = 60 元。
12
2026.01.26
oppo云服务https://cloud.oppo.com/可以在云端安全存储您的照片、视频、联系人、便签等重要数据。当您的手机数据意外丢失或者需要更换手机时,可以随时将这些存储在云端的数据快速恢复到手机中。
40
2026.01.26
网页端充值步骤:打开浏览器,输入https://www.douyin.com,登录账号;点击右上角头像,选择“钱包”;进入“充值中心”,操作和APP端一致。注意:切勿通过第三方链接、二维码充值,谨防受骗
7
2026.01.26
热门下载
相关下载
精品课程
最新文章
