从文件对话框中读取后,我要调整图片大小。我已经完成了以下代码。现在,我要调整图片流的大小。我该怎么做?

Stream stream = (Stream)openFileDialog.File.OpenRead();
byte[] bytes = new byte[stream.Length];

最佳答案

无需声明byte[]即可调整图像大小,只需使用

Image image = Image.FromFile(fileName);


检查this other answer以查看如何缩放图像

07-25 21:44