如何从 Flash 查看器中提取图像?
这涉及(多种)Flash 查看器,可让您放大网站上的图像。我正在尝试提取观看者渲染的大的放大图像。在许多情况下,图像似乎是由查看者动态调用的,或者仅为您当时放大的图像部分创建。理想情况下,这里的方法是一种可以在已识别的闪存元素上调用的编程方法。期望没有什么通用的,但对能够抓住大多数情况的前几种方法感兴趣。
This deals with the (diverse) flash viewers that let you zoom in on images on websites. I’m trying to extract the large, zoomed-in image rendered by the viewer. In many cases the images seem to be dynamically called by the viewer, or are created only for the part of the image you are zooming on at that point. Ideally, the approach here would be a programmatic one that could be called on an identified flash element. Expect there is nothing universal, but interested in the top few approaches that will grab most cases.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 http 监视器(firebug 有一个)。这将为您提供图像图块的 URL。然后,您需要找出 URL 中的模式来为您提供所需的图块。
Use an http monitor (firebug has one). This will give you the URLs of the image tiles. Then, it's down to you to figure out the pattern in the URLs that will give you the tiles you need.
我已经通过使用名为 URL Snooper 的工具成功手动执行此操作。该程序借助 WinPcap 监视网络数据包。
I've had success manually doing this by using the tool called URL Snooper. The program monitors network packets with the aid of WinPcap.