23

我有这个代码用于读取上传的文件,但我需要获取图像的大小,但不确定我可以使用什么代码

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);

我可以得到正确的文件,但是如何检查它的图像(宽度和大小)先生?

4

3 回答 3

50

首先,您必须编写图像:

System.Drawing.Image image = System.Drawing.Image.FromStream (new System.IO.MemoryStream(byteArrayHere));

然后你有:

image.Height.ToString(); 

image.Width.ToString();

注意:您可能想要添加检查以确保它是上传的图像?

于 2013-05-20T13:28:54.580 回答
4
HttpPostedFile file = null;
file = Request.Files[0]

if (file != null && file.ContentLength > 0)
{
    System.IO.Stream fileStream = file.InputStream;
    fileStream.Position = 0;

    byte[] fileContents = new byte[file.ContentLength];
    fileStream.Read(fileContents, 0, file.ContentLength);

    System.Drawing.Image image = System.Drawing.Image.FromStream(new System.IO.MemoryStream(fileContents));
    image.Height.ToString(); 
}
于 2015-01-07T10:46:36.407 回答
3

将图像读入缓冲区(您要么有一个要读取的流,要么有一个字节[],因为如果你有图像,你无论如何都会有尺寸)。

public Size GetSize(byte[] bytes)
{
   using (var stream = new MemoryStream(bytes))
   {
      var image = System.Drawing.Image.FromStream(stream);

      return image.Size;
   }
}

然后,您可以继续获取图像尺寸:

var size = GetSize(bytes);

var width = size.Width;
var height = size.Height;
于 2015-05-03T10:35:20.587 回答