Re: [Tutor] Displaying picture and Text & Downloads

2010-11-05 Thread Alan Gauld
"Patty" wrote I had a followup question for you all - and would like to know the answer to Alan's question about print quality - below - A Google search led me to this page which seems to offer a solution using PIL anmd a module called ImageTk: http://codeidol.com/python/python3/A-Tkinter-

[Tutor] Displaying picture and Text & Downloads

2010-11-05 Thread Patty
ot;Alan Gauld" Sent: Thursday, November 04, 2010 11:14 AM Subject: Re: [Tutor] Displaying picture and Text Yes, I would like to know this, I want this function to be really modular and I thought of something else. If my solution turns out to be using Tkinter functions only then wouldn

Re: [Tutor] Displaying picture and Text

2010-11-04 Thread Alan Gauld
"Alan Gauld" wrote fhdl = Image.open("C:\Users\StarShip\PyProgs\\bbsparkle.gif") fhdl.show() The Tkinter PhotoImage object can display jpg. I can't recall if it does gifs. Sorry I got that wrong, it can display gifs but not jpgs (despite the fact that jpgs are used more often for photo

Re: [Tutor] Displaying picture and Text

2010-11-04 Thread Patty
Thank you for all the replies - I think I will want to use Tkinter since it also has the timer I am looking for and I do have one book that has a big chapter on using Tkinter. If I find that I am having trouble understanding Python GUI programming. I may be able to copy some code from the book

Re: [Tutor] Displaying picture and Text

2010-11-04 Thread Wayne Werner
On Thu, Nov 4, 2010 at 3:58 AM, Alan Gauld wrote: > > wrote > > > of my python program where a picture is supposed to display with a few >> lines of text below it. >> > > To do this you will need to use some kind of GUI. > The simplest option is probably to use the Text widget in Tkinter > whic

Re: [Tutor] Displaying picture and Text

2010-11-04 Thread Alan Gauld
"Alan Gauld" wrote ...a picture is supposed to display with a few lines of text below it. To do this you will need to use some kind of GUI. The simplest option is probably to use the Text widget in Tkinter I just had a thought. The simplest option might be to use HTML to create a simple

Re: [Tutor] Displaying picture and Text

2010-11-04 Thread Tim Golden
On 04/11/2010 04:24, pa...@cruzio.com wrote: Hi - I am running Python 2.6.6 on my HP netbook with Windows 7. The default picture viewer is set to HP Photo Viewer. I am working on a part of my python program where a picture is supposed to display with a few lines of text below it. Ideally, I wou

Re: [Tutor] Displaying picture and Text

2010-11-04 Thread Alan Gauld
wrote of my python program where a picture is supposed to display with a few lines of text below it. To do this you will need to use some kind of GUI. The simplest option is probably to use the Text widget in Tkinter which can display both Images and text. Ideally, I would like this to s

[Tutor] Displaying picture and Text

2010-11-03 Thread patty
Hi - I am running Python 2.6.6 on my HP netbook with Windows 7. The default picture viewer is set to HP Photo Viewer. I am working on a part of my python program where a picture is supposed to display with a few lines of text below it. Ideally, I would like this to stay on the screen for a shor