Given a url to an image is there a way in Django/Python to pull this image in and then display it on my site (resized if possible)
Thanks
|
Given a url to an image is there a way in Django/Python to pull this image in and then display it on my site (resized if possible) Thanks
| |||
|
feedback
|
|
If you just want to hotlink it print out the html snippet( If you want to store in at your server and resize it on the server-side you might want to look into ImageMagick or PIL for processing and urllib or pycurl for downloading. | |||
feedback
|