无需完整文件处理即可获取图片尺寸
在图像处理中,常常需要在进一步处理之前确定图像的尺寸。然而,获取图像尺寸通常需要将整个图像加载到内存中。
对于内存资源至关重要的场景,需要一种更高效的方法。本文探讨了一种无需读取整个文件即可获取图像尺寸的方法,仅使用标准类库。
解码图像头部信息
图像格式在其头部信息中编码了重要的信息。通过解析这些头部信息,我们可以提取尺寸而无需消耗整个文件。不同的图像格式使用不同的头部信息,每个头部信息都有其自身的结构。例如,JPEG 头部包含一系列标记,而 PNG 头部使用小端整数。
实现方法
我们首先创建一个字典 (imageFormatDecoders),将头部“魔术位”映射到解析相应头部的函数。这些函数从流中提取宽度和高度信息。
<code class="language-csharp">private static Dictionary<byte[], Func<BinaryReader, Size>> imageFormatDecoders = new Dictionary<byte[], Func<BinaryReader, Size>>() { { new byte[]{ 0x42, 0x4D }, DecodeBitmap}, { new byte[]{ 0x47, 0x49, 0x46, 0x38, 0x37, 0x61 }, DecodeGif }, { new byte[]{ 0x47, 0x49, 0x46, 0x38, 0x39, 0x61 }, DecodeGif }, { new byte[]{ 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A }, DecodePng }, { new byte[]{ 0xff, 0xd8 }, DecodeJfif }, };</code>
为了获取图像的尺寸,我们创建一个 BinaryReader 对象并调用 GetDimensions 方法。该方法迭代头部魔术位,将它们与 imageFormatDecoders 字典中的键进行比较,如果找到匹配项,则将尺寸提取委托给相应的函数。
<code class="language-csharp">public static Size GetDimensions(string path) { using (BinaryReader binaryReader = new BinaryReader(File.OpenRead(path))) { try { return GetDimensions(binaryReader); } catch (ArgumentException e) { if (e.Message.StartsWith(errorMessage)) { throw new ArgumentException(errorMessage, "path", e); } else { throw e; } } } }</code>
示例用法
将库集成到您的项目后,检索图像尺寸变得很简单:
<code class="language-csharp">string imagePath = "/path_to_image/image.png"; Size dimensions = ImageHelper.GetDimensions(imagePath);</code>
总结
此解决方案利用可用的图像格式解码器,适用于各种图像文件类型。它提供了一种与平台无关的图像尺寸检索方法,在资源有限的环境中尤其宝贵。
以上是如何在不加载整个文件的情况下获取图像尺寸?的详细内容。更多信息请关注PHP中文网其他相关文章!