0

是否可以在 .NET 解决方案中引用指向文件的新位图,而无需为其提供完全限定的文件系统位置?尝试这样做以在 Azure 中运行而无需设置云存储。

此代码无法解析 a.jpg... 我尝试了 \a.jpg、~\a.jpg 等。怀疑不是,但只是询问以防万一我在这里遗漏了一些东西。

    context.Response.Clear();
    //Bitmap bitMapImage = new System.Drawing.Bitmap((@"P:\somedirectory\a.jpg"));
    Bitmap bitMapImage = new System.Drawing.Bitmap((@"a.jpg"));
    Graphics graphicImage = Graphics.FromImage(bitMapImage);

更新:也试过

Bitmap bitMapImage = new System.Drawing.Bitmap(HttpContext.Current.Server.MapPath("a.jpg"));
4

1 回答 1

1

我在 Azure 和 MVC 4 中使用它

string strAttachFileName = HostingEnvironment.MapPath("/images/GM.gif");
于 2013-05-14T01:09:40.543 回答