Re: [Matplotlib-users] Reading a remote JPG URL using imread

2012-10-19 Thread Phil Elson
Good idea. If the png version works then the jpg version should also be made to work, Would you be willing to open up an issue for the feature request? : https://github.com/matplotlib/matplotlib/issues/new If your ready and willing to implement such a thing, that would be even better (just open a

[Matplotlib-users] Reading a remote JPG URL using imread

2012-10-19 Thread Rich Signell
MPL folks, Would it be possible to enhance Matplotlib to allow "im=imread(url)" to work if url returns a JPG? Currently (it seems): 1. If the URL returns a PNG this works: im = imread(urllib2.urlopen(url)) 2. If the URL returns a JPG, this DOESN'T work: im = imread(urllib2.urlopen(url)) .. a