在Windows应用程序中调整图像大小

在Windows应用程序中调整图像大小

本文介绍了在Windows应用程序中调整图像大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我再次提出有关图片上传的问题.

我想先调整图像大小,然后再保存其他加载.

例如,我选择了尺寸为500px * 350px的"D:\ MemberImage \ MyPhoto.jpg".

现在,在将此文件保存到其他位置之前,我想将此选定文件的大小调整为160px * 120px,然后将此调整大小后的图像保存在新位置.

我的意思是当我保存文件时

File.Copy(openFileDialog1.filename,@"D:\ Images \ new.jpg");

我的new.jpg文件的大小应为160px * 120px;

请帮我一些

感谢和问候.

I once again one question about image upload.

I want to resize the image before saving at other loadtion.

For example i have selected "D:\MemberImage\MyPhoto.jpg" with size 500px*350px.

Now before saving this file at other location i want to resize this selected file to 160px*120px and then save this resized image in new location.

I mean when i save my file

File.Copy(openFileDialog1.filename,@"D:\Images\new.jpg");

my new.jpg file should be of size 160px*120px;

Please help me some

Thanks and regards.

推荐答案




这篇关于在Windows应用程序中调整图像大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 16:18