我有一个ASHX处理程序在页面加载时返回一个图像。我需要根据图像的尺寸动态地为图像添加一个类。我尝试使用以下方法执行此操作:
方法背后的代码
CS 的
protected void Page_Load(object sender, EventArgs e)
{
int id = Convert.ToInt32(Request.QueryString["id"]);
image1.ImageUrl = "get_image.ashx?id=" + id;
}
public void classify_image_Load(object sender, EventArgs e)
{
if(image1.Width.Value > image1.Height.Value)
{
image1.CssClass = "landscape";
}
else
{
image1.CssClass = "portrait";
}
}
HTML 的
<asp:Image ID="image1" runat="server" OnLoad="classify_image_Load" />
这适用于初始加载,但是对于任何回发(上传新图像/旋转/裁剪),它无法正确应用该类。
jQuery方法
JS
$(window).load(function(){
$('#image1').load(function() {
if($(this).width() > $(this).height())
{
$(this).attr('class', 'landscape');
} else {
$(this).attr('class', 'portrait');
}
});
});
此方法根本不起作用,图像没有分配给它的类。我不确定这是ashx控件的时间问题还是什么。
ASHX代码
public class get_image : IHttpHandler
{
string file_path = ConfigurationManager.AppSettings["file_path"].ToString();
public void ProcessRequest(HttpContext context)
{
context.Response.Clear();
Image img;
if (!String.IsNullOrEmpty(context.Request.QueryString["id"]))
{
int id;
if (context.Request.QueryString["id"].IndexOf('?') > 0)
{
id = Int32.Parse(context.Request.QueryString["id"].Split('?')[0]);
}
else
{
id = Int32.Parse(context.Request.QueryString["id"]);
}
dbclassDataContext db = new dbclassDataContext();
photo d = (from p in db.photos
where p.id == id
select p).SingleOrDefault();
if (d != null)
{
if (!String.IsNullOrEmpty(d.filename))
{
img = Image.FromFile(file_path + "\\" + d.filename);
context.Response.ContentType = "image/" + d.filetype;
img.Save(context.Response.OutputStream, get_format(d.filetype));
}
else
{
img = Image.FromFile(file_path + "\\no_image.jpg");
context.Response.ContentType = "image/jpeg";
img.Save(context.Response.OutputStream, ImageFormat.Jpeg);
}
}
else
{
img = Image.FromFile(file_path + "\\no_image.jpg");
context.Response.ContentType = "image/jpeg";
img.Save(context.Response.OutputStream, ImageFormat.Jpeg);
}
}
else
{
img = Image.FromFile(file_path + "\\no_image.jpg");
context.Response.ContentType = "image/jpeg";
img.Save(context.Response.OutputStream, ImageFormat.Jpeg);
}
img.Dispose();
}
public bool IsReusable
{
get
{
return false;
}
}
private ImageFormat get_format(string ftype)
{
switch (ftype)
{
case "jpeg":
return ImageFormat.Jpeg;
case "png":
return ImageFormat.Png;
case "gif":
return ImageFormat.Gif;
default:
return ImageFormat.Jpeg;
}
}
}
我正在使用Linq根据用户ID从数据库中提取位置和类型,然后我将图像返回到请求页面。这似乎工作正常,但我把它包括在内,以防可能有任何我忽略的问题。
问题
我需要根据其维度对Image进行动态分类,我可以在.NET代码后面或使用jQuery来实现。我上面的方法错误导致它无法正常工作?
答案 0 :(得分:1)
如果从浏览器缓存加载图像,则.load事件可能会出现问题(请参阅http://api.jquery.com/load-event/) - 也许您可以尝试禁用缓存或向图像追加时间值,以便浏览器不缓存它,如果这个问题正在发生?