日期:2014-05-18  浏览次数:20826 次

如何获取jpg图的属性,要图的长和宽
路径都知道的!RT

------解决方案--------------------
C# code
Image image=Image.FromFile(path);//获取图片,path为路径
int width=image.Width;//获取宽
int height=image.Height;//获取高