我有这个代码用于读取上传的文件,但我需要获取图像的大小,但不确定我可以使用什么代码
HttpFileCollection collection = _context.Request.Files;
for (int i = 0; i < collection.Count; i++)
{
HttpPostedFile postedFile = collection[i];
Stream fileStream = postedFile.InputStream;
fileStream.Position = 0;
byte[] fileContents = new byte[postedFile.ContentLength];
fileStream.Read(fileContents, 0, postedFile.ContentLength);
我可以得到正确的文件,但是如何检查它的图像(宽度和大小)先生?