I use the following code to download the image 14112758275517_800X533.jpg
.
The problem is that I cannot open the 14112758275517_800X533.jpg
saved as G:\\image.jpg
because the
Windows photo viewer was unable to open the picture, as the file may be corrupted, damaged or too large
import urllib
imageurl="http://img.vogue.com.cn/userfiles/201409/14112758275517_800X533.jpg"
pic_name = "G:\\image.jpg"
urllib.urlretrieve(imageurl, pic_name)
How can I download the image so that it is readable?