有没有一种便宜的方法来获得一个图像的尺寸(jpg,png,...) ?最好是,我希望只使用标准类库来实现这一点(由于宿主的限制)。我知道这应该是相对容易阅读的图像标题和解析自己,但似乎这样的东西应该已经存在。此外,我还验证了下面的代码可以读取整个图像(我不希望这样) :
using System;
using System.Drawing;
namespace Test
{
class Program
{
static void Main(string[] args)
{
Image img = new Bitmap("test.png");
System.Console.WriteLine(img.Width + " x " + img.Height);
}
}
}