Here's a question that very few ask and is very hard to find solution for in the internet.
I would like to dynamically download an image from a html tag and save that image to a local folder and than change the tag to point to the new location of the image.
For example:
<img src="http://example.com/Logo.png"
alt="" width="232">
I want to download that image to a local folder,say, C:\Logo.png.
And change the code to:
<img src="c:\Logo.png"
alt="" width="232">
I know there are a lot of long solutions. I'm looking for a "tool" that's already out there or a really quick solution to accomplish this. There are more than 1000 tags to move.