没有合适的资源?快使用搜索试试~ 我知道了~
c#图片缩放的简单方法
5星 · 超过95%的资源 需积分: 50 21 下载量 163 浏览量
2018-04-17
15:54:14
上传
评论
收藏 1KB TXT 举报
温馨提示
C#图片缩放,使用Bitmap的方式,可以将图片按比例缩放,也可以设定固定大小
资源推荐
资源详情
资源评论
/// <summary>
/// C#图片缩放
/// </summary>
/// <param name="strFile">原文件完整名称</param>
/// <param name="strNewFile">新文件完整名称</param>
/// <param name="intWidth">新的宽度</param>
/// <param name="intHeight">新的高度(若高度为0, 按比例缩放)</param>
/// <returns></returns>
public static bool picResize(string strFile, string strNewFile, int intWidth, int intHeight)
{
System.Drawing.Bitmap objPic, objNewPic;
try
{
if (!File.Exists(strFile))
return false;
objPic = new System.Drawing.Bitmap(strFile);
if (intHeight <= 0)
intHeight = (intWidth * objPic.Height / objPic.Width);
objNewPic = new System.Drawing.Bitmap(objPic, intWidth, intHeight);
objPic.Dispose();
objPic = null;
string newFile = strNewFile.Substring(0, strNewFile.LastIndexOf('.'));
//格式可以截取图片的后缀,再判断文件格式
objNewPic.Save(newFile + ".jpg", ImageFormat.Jpeg);
objNewPic.Dispose();
File.Delete(strFile);
}
catch (Exception ex)
{
/// C#图片缩放
/// </summary>
/// <param name="strFile">原文件完整名称</param>
/// <param name="strNewFile">新文件完整名称</param>
/// <param name="intWidth">新的宽度</param>
/// <param name="intHeight">新的高度(若高度为0, 按比例缩放)</param>
/// <returns></returns>
public static bool picResize(string strFile, string strNewFile, int intWidth, int intHeight)
{
System.Drawing.Bitmap objPic, objNewPic;
try
{
if (!File.Exists(strFile))
return false;
objPic = new System.Drawing.Bitmap(strFile);
if (intHeight <= 0)
intHeight = (intWidth * objPic.Height / objPic.Width);
objNewPic = new System.Drawing.Bitmap(objPic, intWidth, intHeight);
objPic.Dispose();
objPic = null;
string newFile = strNewFile.Substring(0, strNewFile.LastIndexOf('.'));
//格式可以截取图片的后缀,再判断文件格式
objNewPic.Save(newFile + ".jpg", ImageFormat.Jpeg);
objNewPic.Dispose();
File.Delete(strFile);
}
catch (Exception ex)
{
资源评论
- 王佛伟2023-07-26ry, but I'm not sure what you mean by c in this context. Can you please provide more information or clarify your question?
垂天丶翼
- 粉丝: 7
- 资源: 9
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功