欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net 获取图片高度和宽度实例代码

程序员文章站 2024-03-11 21:40:55
复制代码 代码如下:string path = server.mappath("img/1.gif"); system.drawing.image image = syst...

复制代码 代码如下:

string path = server.mappath("img/1.gif");
system.drawing.image image = system.drawing.image.fromfile(path);
response.write("宽:" + image.width + "<br />");
response.write("高:" + image.height );