我们使用 Imageresizer ( http://imageresizing.net ) 通过使用图像 URL 来调整图像大小,例如
- http://host.com/path/to/image/file.jpg.ashx?width=50
- http://host.com/path/to/image/file.jpg.ashx?height=50
这就像一个魅力。
我们还使用其他 Imageresizer 功能(如 404 过滤器)在请求的图像不存在的情况下输出默认图像。
我的问题是:是否可以在不提供宽度和/或高度查询参数的情况下使用像 404 过滤器这样的 Imageresizer 功能?这个想法是,Imageresizer 使用原始的宽度和高度值。
当我尝试使用像http://host.com/path/to/image/file.jpg.ashx?404=/path/to/image/file.jpg这样的图像 URL 时,我收到 404 错误。
提前致谢。简