我的位置存储在服务器上的图像:
C:\inetpub\wwwroot\imageupload\images
在我的代码中我想使用文件夹图像中的图像,所以我尝试如下:
Server.MapPath("/images/sample1.jpg")
但我得到的错误是:
请帮我解决错误
如同要求发布代码的几个答案,如下
的.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<%@ Register Assembly="CS.Web.UI.CropImage" Namespace="CS.Web.UI" TagPrefix="cs" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<cs:CropImage ID="wci1" runat="server" />
</body>
</html>
.aspx.cs
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
wci1.Crop(Server.MapPath("/imageupload/images/sample1.jpg"));
/*
this part is just to show the image after its been cropped and saved! so focus on just the code above.
*/
Image img = new Image();
img.ImageUrl = "images/sample1.jpg?rnd=" + (new Random()).Next(); // added random for caching issue.
this.Controls.Add(img);
}
}
使用的.dll文件
答案 0 :(得分:4)
错误在CSA.Web.UI.CropImage.Crop
方法中,如堆栈跟踪所述。
Server.MapPath
不会返回一个空字符串(如果它不能映射,它会抛出异常 - 而不是NullReferenceException
)。
我建议你研究我提到的方法,也可能发布相关的代码。
修改强>
所以,我快速查看了您提到的the CodePlex project中的Crop
代码,并找到了以下行(格式化我的代码):
private string ImagePath { get { return ViewState["ImageUrl"].ToString(); } }
drawing.Image image = drawing.Image.FromStream(
new MemoryStream(
System.IO.File.ReadAllBytes(
HttpContext.Current.Server.MapPath(this.ImagePath)
)
)
);
cropedImage.Save(path);
现在,在我看来:
Path
不为空* ImageUrl
null ** *虽然它可能“不正确”但现在不是问题。
**意味着调用ToString
是此代码中的破解因素。
基本上,控件没有设置裁剪的图像,这在您自己的代码中很明显:
//currently no ImageUrl set...
<cs:CropImage ID="wci1" runat="server" />
//your'e trying to crop here without an ImageUrl...
wci1.Crop(Server.MapPath("/imageupload/images/sample1.jpg"));
修复是通过ImageUrl
,AFAIK指定图像,但是我看不出怎么做。
答案 1 :(得分:1)
您已将图像存储在imageupload\images
中,但是当您尝试抓取它们时,您忘记添加imageupload
目录:
Server.MapPath("/imageupload/images/sample1.jpg")
答案 2 :(得分:0)
尝试使用相对路径:
Server.MapPath("images/sample1.jpg")
答案 3 :(得分:0)
考虑使用“〜/ images / sample1.jpg”作为您的来源。在调用Server.MapPath
时,“〜”将替换为应用程序名称答案 4 :(得分:0)
根据: https://webcropimage.svn.codeplex.com/svn/trunk/CS.WebControls/WebCropImage/CropImage.cs
方法裁剪(),提供保存裁剪图像的路径。
应裁剪哪个图像存储在 wci1.ImagePath
中请检查此值是否为 null ,这应指出问题。
由于没有<Form runat="Server">
,可能无法访问ViewState:
private string ImagePath { get { return ViewState["ImageUrl"].ToString(); } }