29

我目前正在编写一个系统,该系统存储大约 140,000 张 ish 图像的元数据,这些图像存储在一个遗留图像库中,这些图像正在移动到云存储中。我正在使用以下内容获取jpg数据...

System.Drawing.Image image = System.Drawing.Image.FromFile("filePath");

我对图像处理很陌生,但这对于获取宽度、高度、纵横比等简单值来说很好,但我无法解决的是如何检索以字节表示的 jpg 的物理文件大小。任何帮助将非常感激。

谢谢

最终解决方案,包括图像的 MD5 哈希,以供以后比较

System.Drawing.Image image = System.Drawing.Image.FromFile(filePath);

if (image != null)
{
  int width = image.Width;
  int height = image.Height;
  decimal aspectRatio = width > height ? decimal.divide(width, height) : decimal.divide(height, width);  
  int fileSize = (int)new System.IO.FileInfo(filePath).Length;

  using (System.IO.MemoryStream stream = new System.IO.MemoryStream(fileSize))
  {
    image.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg);
    Byte[] imageBytes = stream.GetBuffer();
    System.Security.Cryptography.MD5CryptoServiceProvider provider = new System.Security.Cryptography.MD5CryptoServiceProvider();
    Byte[] hash = provider.ComputeHash(imageBytes);

    System.Text.StringBuilder hashBuilder = new System.Text.StringBuilder();

    for (int i = 0; i < hash.Length; i++)
    {
      hashBuilder.Append(hash[i].ToString("X2"));
    }

    string md5 = hashBuilder.ToString();
  }

  image.Dispose();

}
4

3 回答 3

55

如果您直接从文件中获取图像,则可以使用以下代码获取原始文件的大小(以字节为单位)。

 var fileLength = new FileInfo(filePath).Length; 

如果您从其他来源获取图像,例如获取一个位图并将其与其他图像组合,例如添加水印,您将必须在运行时计算大小。您不能只使用原始文件大小,因为压缩可能会导致修改后的输出数据大小不同。在这种情况下,您可以使用 MemoryStream 将图像保存到:

long jpegByteSize;
using (var ms = new MemoryStream(estimatedLength)) // estimatedLength can be original fileLength
{
    image.Save(ms, ImageFormat.Jpeg); // save image to stream in Jpeg format
    jpegByteSize = ms.Length;
 }
于 2008-10-21T10:01:26.953 回答
2

如果您没有原始文件,则文件大小不清楚,因为它取决于图像格式和质量。所以你要做的就是将图像写入流(例如 MemoryStream),然后使用流的大小。

于 2008-10-21T10:06:10.003 回答
1

System.Drawing.Image不会给你大小的文件长度。您必须为此使用另一个库。

int len = (new System.IO.FileInfo(sFullPath)).Length;
于 2008-10-21T10:03:23.690 回答