How to scrap the image url using "SRC" for google image seach result

@Penganimation
as a quick starter (later it can be beautified):
Dim imageBytes As Byte() = Convert.FromBase64String(YourBase64String)
File.WriteAllBytes(“image.jpg”, imageBytes)

But remove from Start:
data:image/jpeg;base64,/9j/

data:image/jpeg;base64,
and let start the image data by: /9j/

1 Like