Discussion:
[Tutor] Image library
a***@yahoo.in
2015-06-04 14:09:43 UTC
Permalink
hello , sir i wanted to know that how can i show or display a simple image using python 3.4The thing is that i want to know that there is no image module or library located in the library folder under python 3.4.?sir, please help me out with this basic step..
_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Laura Creighton
2015-06-04 15:47:10 UTC
Permalink
Post by a***@yahoo.in
hello , sir i wanted to know that how can i show or display a simple image using python 3.4The thing is that i want to know that there is no image module or library located in the library folder under python 3.4.?sir, please help me out with this basic step..
I use Pillow. But you may also have to install some libraries in order
to show jpegs, etc. See the list here.
http://pillow.readthedocs.org/en/latest/installation.html

Laura



_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Alan Gauld
2015-06-04 15:51:27 UTC
Permalink
Post by a***@yahoo.in
i wanted to know that how can i show or display a simple image using python 3.4
The Tkinter package in the standard library includes a Canvas widget
which can display various forms of image. It depends what format the
image is in. You will probably need to create a PhotoImage object then
inset that into the canvas.
Post by a***@yahoo.in
The thing is that i want to know that there is no image module or library
located in the library folder under python 3.4.?
There is no specific image folder but there is the Tkinter GUI tookit

There are several 3rd party toolkits you can downloasd too such as
Pillow and imageMagick (for manipulating/converting images).
Both include very basic display capability.
--
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos


_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Alan Gauld
2015-06-04 16:12:17 UTC
Permalink
Post by Alan Gauld
There is no specific image folder but there is the Tkinter GUI tookit
Oops, I meant "image module"...
--
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos


_______________________________________________
Tutor maillist - ***@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
Continue reading on narkive:
Loading...