Click here to Skip to main content
15,924,829 members
Please Sign up or sign in to vote.
1.00/5 (4 votes)
See more:
I want to pick up image from the opened website and modify it using VB.net.
how can I do this????
I'm try to convert the images in the website it self.Frankly I want to cover the nude or naked image with a dark color.To prevent child from seeing them.
Posted
Updated 6-May-14 21:01pm
v2
Comments
Bernhard Hiller 7-May-14 2:39am    
Just think a little:
Where is the image stored?
How does it get into the browser?
And how can an application interfere with the above process?

1 solution

Here is one suggestion (using a webbrowser control)
http://www.vb-helper.com/howto_net_grab_web_images.html[^]

Here is another solution that can use the mouse to define which bit of the screen you want to capture TeboScreen: Basic C# Screen Capture Application[^] (It's in C# but there are plenty of free converters out there)

or

Given a URL go get the image and download it http://forums.asp.net/t/631768.aspx?Downloading+and+saving+an+image+from+URL+using+VB+Net[^]

In all of the above, be wary of Copyright infringements
 
Share this answer
 
Comments
Ayman Khoshouey 7-May-14 1:59am    
I'm try to convert the images in the website it self.Frankly I want to cover the nude or naked image with a dark color.To prevent child from seeing them.
CHill60 7-May-14 3:43am    
That's not quite the same as the original question! You would be better off blocking the site or preventing images from being downloaded to your browser - there are products out there. Or write your own browser.
Ayman Khoshouey 7-May-14 4:45am    
How can I preventing images from being downloaded to my browser
CHill60 7-May-14 4:52am    
This Wikipedia page http://en.wikipedia.org/wiki/Help:Options_to_hide_an_image[^] includes instructions on configuring various browsers to prevent images being displayed
Ayman Khoshouey 7-May-14 4:59am    
I want to do this programmically to prevent just the unsiutable pictures not all pictures.
I have Matrixs for all skin colored and I want to change the RGB of the pixels of the porno pictures to be Dark color letus say "bm.SetPixel(x, y, Color.FromArgb(132, 15, 151))"

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900