How did you found the way, if you simply have copied the entire article and saying that it is your invention? You're just an imposter! This entry was posted in Wallpapers and tagged Bing images without watermark, bing wallpapers without bing watermark on May 1, 2016 by Sergey Tkachenko. You may not republish any content as your original work or without credits. © Winaero
HB860, You might want to mention that not all images have the element called "detailImageContainer":, so the instructions on Winaero are only valid for images that have that element.
Also nice site. However, it shows me only a FEW images. 5 or 7. Then sticks and does not load new images.
Another way to get Bing Wallpapers (they change every day), most of them 1920x1080, is: a) navigate (i use Firefox) to regional bing.com page (e.g. for United States is "bing.com/?mkt=en-US") b) right click on page then choose "view source page" c) search for string "g_img={url:'" ; after this string there's image link, call it imgSubLink d) full image link will be "bing.com" + imgSubLink other regional pages: Canada, "bing.com/?mkt=en-CA" United Kingdom, "bing.co.uk" France, "bing.com/?cc=fr" Germany, "bing.com/?cc=de" Spain, "bing.com/?cc=es" Italy, "bing.com/?cc=it" NOTE: i can't post links, so add "h t t p : / / w w w ." (without spaces) to each link This vb.net little piece of code retrieve a bing regional image and put it in a picturebox; put a Button and a PictureBox (640x360 pixel wide) in a form, then paste this: Code: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Me.Cursor = Cursors.WaitCursor 'strange way to compose string but i can't post links Dim s1 As String = StrReverse("//:ptth") & "w" & "w" & "w." 'load web page source code and find image link Dim request As Net.HttpWebRequest = Net.HttpWebRequest.Create(s1 & "bing.com/?mkt=en-US") Dim response As Net.HttpWebResponse = request.GetResponse() Dim sr As System.IO.StreamReader = New System.IO.StreamReader(response.GetResponseStream()) Dim sourcecode As String = sr.ReadToEnd() Dim startIndex As Integer = sourcecode.IndexOf("g_img={url:'") + 12 Dim lastIndex As Integer = sourcecode.IndexOf("'", startIndex) Dim imgSubPath As String = sourcecode.Substring(startIndex, lastIndex - startIndex) Dim bingImageURL = (s1 & "bing.com" + imgSubPath) 'load image and put in a picture box Dim requestImg As Net.HttpWebRequest = Net.HttpWebRequest.Create(bingImageURL) Dim responseImg As Net.HttpWebResponse = requestImg.GetResponse() Dim bImage As Bitmap = New Bitmap(responseImg.GetResponseStream()) PictureBox1.Image = bImage Me.Cursor = Cursors.Default End Sub
Thanks for the post those are some great images. So far my favorite is the Angel Oak tree. There is another live oak just as impressive located in my hometown.