I need to copy a remote image (for example http://site.com/image.jpg) to my server. Is this possible?
How do you verify that this is indeed an image?
|
I need to copy a remote image (for example How do you verify that this is indeed an image?
| ||||
feedback
|
|
To download:
To verify can use PIL
If you just want to verify this is an image even if the image data is not valid: You can use imghdr
The method checks the headers and determines the image type. It will return None if the image was not identifiable. | |||||
feedback
|
|
Downloading stuff
Verifying that it is a image can be done in many ways. The hardest check is opening the file with the Python Image Library and see if it throws an error. If you want to check the file type before downloading, look at the mime-type the remote server gives.
| ||||
|
feedback
|
|
Same thing using httplib2...
| |||
|
feedback
|