gpt4 book ai didi

ASP.NET:获取图像的高度和宽度

转载 作者:行者123 更新时间:2023-12-02 11:49:40 26 4
gpt4 key购买 nike

有人问过这个问题,但我还没有找到正确的答案。

假设我在文件服务器上有一个 .jpg 图像,并且我需要获取它的高度和宽度。我如何在 ASP.NET 中做到这一点?

我看到了一些建议做这样的事情的答案:

System.Drawing.Image image=System.Drawing.Image.FromFile(PicturePath); 
int ActualWidth=image.Width;
int ActualHeight=image.Height;
image.Dispose();

这会工作得很好,除了classes within the System.Drawing namespace are not supported for use within an ASP.NET service .

那么,如何在 ASP.net 中获取图像的实际高度和宽度?

最佳答案

在aspx上添加服务器端图像控件

<asp:image ID="img1" runat="server" src="" />

并在后面的代码中给它一个 src

img1.src = System.Drawing.Image.FromFile(PicturePath);

int ActualWidth = img1.Width;
int ActualHeight = img1.Height;
img1.src = "";

关于ASP.NET:获取图像的高度和宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2016186/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com