获取一张图片的大小

来源:互联网 发布:ipad怎么加密软件 编辑:程序博客网 时间:2024/04/29 02:34

private void ShowInfoAboutImg()
    {
        string filePath = Server.MapPath("image/2.gif");
        Bitmap bitmap = new Bitmap(filePath);
        Response.Write("width:" + bitmap.Width + "
" + "height:" + bitmap.Height);
    }