如何获取图像文件的尺寸
本文关键字:文件 图像 何获取 获取 | 更新日期: 2023-09-27 18:00:25
我有一个名为FPN = "c:'ggs'ggs Access'images'members'1.jpg "
的文件
我正在尝试获取图像1.jpg
的尺寸,我想在加载之前检查图像尺寸是否有效。
System.Drawing.Image img = System.Drawing.Image.FromFile(@"c:'ggs'ggs Access'images'members'1.jpg");
MessageBox.Show("Width: " + img.Width + ", Height: " + img.Height);
System.Windows.Media.Imaging.BitmapDecoder
不读取整个文件,只读取元数据。
using(var imageStream = File.OpenRead("file"))
{
var decoder = BitmapDecoder.Create(imageStream, BitmapCreateOptions.IgnoreColorProfile,
BitmapCacheOption.Default);
var height = decoder.Frames[0].PixelHeight;
var width = decoder.Frames[0].PixelWidth;
}
更新2019-07-07处理exif
’ed图像稍微复杂一些。出于某些原因,iPhone会保存一个旋转的图像,为了补偿,他们还设置了"在显示之前旋转此图像"exif标志。
Gif也是一种相当复杂的格式。可能没有一个帧具有完整的gif大小,您必须根据偏移量和帧大小进行聚合。
所以我改为使用ImageProcessor,它为我处理了所有的问题。但从未检查它是否读取了整个文件,因为有些浏览器不支持exif
,我不得不保存一个旋转版本。
using (var imageFactory = new ImageFactory())
{
imageFactory
.Load(stream)
.AutoRotate(); //takes care of ex-if
var height = imageFactory.Image.Height,
var width = imageFactory.Image.Width
}
对于.NET Core用户和任何不想使用第三奇偶校验库的人(像我一样阅读规范并保持简单),这里有JPEG维度的解决方案:
public class JPEGPicture
{
private byte[] data;
private ushort m_width;
private ushort m_height;
public byte[] Data { get => data; set => data = value; }
public ushort Width { get => m_width; set => m_width = value; }
public ushort Height { get => m_height; set => m_height = value; }
public void GetJPEGSize()
{
ushort height = 0;
ushort width = 0;
for (int nIndex = 0; nIndex < Data.Length; nIndex++)
{
if (Data[nIndex] == 0xFF)
{
nIndex++;
if (nIndex < Data.Length)
{
/*
0xFF, 0xC0, // SOF0 segement
0x00, 0x11, // length of segment depends on the number of components
0x08, // bits per pixel
0x00, 0x95, // image height
0x00, 0xE3, // image width
0x03, // number of components (should be 1 or 3)
0x01, 0x22, 0x00, // 0x01=Y component, 0x22=sampling factor, quantization table number
0x02, 0x11, 0x01, // 0x02=Cb component, ...
0x03, 0x11, 0x01 // 0x03=Cr component, ...
*/
if (Data[nIndex] == 0xC0)
{
Console.WriteLine("0xC0 information:"); // Start Of Frame (baseline DCT)
nIndex+=4;
if (nIndex < Data.Length-1)
{
// 2 bytes for height
height = BitConverter.ToUInt16(new byte[2] { Data[++nIndex], Data[nIndex-1] }, 0);
Console.WriteLine("height = " + height);
}
nIndex++;
if (nIndex < Data.Length - 1)
{
// 2 bytes for width
width = BitConverter.ToUInt16(new byte[2] { Data[++nIndex], Data[nIndex-1] }, 0);
Console.WriteLine("width = " + width);
}
}
}
}
}
if (height != 0)
Height = height;
if (width != 0)
Width = width;
}
public byte[] ImageToByteArray(string ImageName)
{
FileStream fs = new FileStream(ImageName, FileMode.Open, FileAccess.Read);
byte[] ba = new byte[fs.Length];
fs.Read(ba, 0, Convert.ToInt32(fs.Length));
fs.Close();
return ba;
}
}
class Program
{
static void Main(string[] args)
{
JPEGPicture pic = new JPEGPicture();
pic.Data = pic.imageToByteArray("C:''Test.jpg");
pic.GetJPEGSize();
}
}
我给任何想改进渐进DCT:代码的人留了一个空间
if (Data[nIndex] == 0xC2)
不幸的是,System.Drawing
和ImageProcessor
仅在Windows平台上受支持,因为它们是GDI(图形设备接口)的精简包装器,GDI是非常旧的Win32(Windows)非托管绘图API
相反,只需从NuGet安装SixLabors/ImageSharp库。以下是如何使用它获得尺寸:
using (var image = SixLabors.ImageSharp.Image.Load("image-path."))
{
var width = image.Width;
var height = image.Height;
}