gpt4 book ai didi

c# - 调整图像的 byte[] 大小

转载 作者:行者123 更新时间:2023-11-30 14:34:17 24 4
gpt4 key购买 nike

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

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

最佳答案

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

Image image = Image.FromFile(fileName);

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

关于c# - 调整图像的 byte[] 大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14315792/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com