Re: [Tkinter-discuss] Canvas() to Image() fonts

2023-07-29 Thread Michael Lange
Hi Bob, On Fri, 28 Jul 2023 13:00:10 -0600 Bob Greschke wrote: > Hi Michael! > > I'm working up to Image.save("something.png"). The program will produce > a picture for each of five different monitors each day, and then > they'll end up on a web page, so a .png is desired. The program now >

Re: [Tkinter-discuss] Canvas() to Image() fonts

2023-07-28 Thread Bob Greschke
Hi Michael! I'm working up to Image.save("something.png"). The program will produce a picture for each of five different monitors each day, and then they'll end up on a web page, so a .png is desired. The program now draws the canvas, then uses an ImageGrab.grab() to make a picture of the

Re: [Tkinter-discuss] Canvas() to Image() fonts

2023-07-28 Thread Michael Lange
Hi, On Fri, 28 Jul 2023 09:08:11 -0600 Bob Greschke wrote: > Hi! > > I'm plotting some stuff to a Canvas() (second-by-second signal-to-noise > values for GPS satellites) and using something like > > > > in the program to get the font to use for text labels and stuff on the > canvas. > > I can't

[Tkinter-discuss] Canvas() to Image() fonts

2023-07-28 Thread Bob Greschke
Hi! I'm plotting some stuff to a Canvas() (second-by-second signal-to-noise values for GPS satellites) and using something like PROGPropFont = Font(font = Entry()["font"]) in the program to get the font to use for text labels and stuff on the canvas. I can't figure out how to get the same