我有服务器端图像控制:
<img id="img" runat="server" style="padding-left:20px"
src="~/Images/2013-02-14_225913.png" />
我想计算它的高度和宽度。我这样做是:
int iWidth = (int)Math.Round((decimal)img.Width.Value);
int iHeight = (int)Math.Round((decimal)img.Height.Value);
这将返回 -0,而不是实际参数。
如何获得图像控件的 H & W?