流过滤器改变图像的路径
我希望在 http 模块中编写一个流文件管理器,用于分析页面的输出 html,在页面 html 中搜索页面内的任何图像,检查图像的源是否具有完整路径或相对路径。如果它是相对路径,请将其更改为完整路径。有人写过类似的东西吗?寻找一些这样的例子?
I am looking to write a stream filer in a http module that anyalyze the output html of a page, search through the pages html for any images within the page, check if the source of the image has a full path or relative path. If its a relative path, alter it to have a full path. Anyone ever write anything anything like this? Looking for some examples of such?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议直接使用 WebControlAdapter 作为 img 标签,而不是分析整个页面,原因有很多。
以下是如何使用此适配器的示例,您可以简单地更改它以修复完整路径:
http://www.codeproject.com/KB/web-image/IePngControlAdapter.aspx
这是
I suggest to direct use the WebControlAdapter for the img tag and not go by analyse the full page for many reasons.
Here is an example how you can you this adapter, you can simple change it to just fix the full path:
http://www.codeproject.com/KB/web-image/IePngControlAdapter.aspx
Here is one more example more close to what you ask