Re: GDI in python?

2006-02-18 Thread Claudio Grondi
al pacino wrote: hi, is it possible to address the 'screen pixels' using python , like analogous to older dos( functions that graphics.h provides') or win api calls for gdi. what i want is to display clusters (in differetn colours) on screen using python. thanks. Sure. The problem

Re: GDI in python?

2006-02-18 Thread Diez B. Roggisch
al pacino schrieb: hi, is it possible to address the 'screen pixels' using python , like analogous to older dos( functions that graphics.h provides') or win api calls for gdi. Use one of the available GUI-Toolkits - Tkinter is included already. Or pygame. Diez --

Re: GDI in python?

2006-02-18 Thread F. Petitjean
Le 17 Feb 2006 22:02:23 -0800, al pacino a écrit : hi, is it possible to address the 'screen pixels' using python , like analogous to older dos( functions that graphics.h provides') or win api calls for gdi. Some possibilities (all on Win32 only): ctypes by Thomas Heller venster (uses

Re: GDI in python?

2006-02-18 Thread Peter Hansen
al pacino wrote: is it possible to address the 'screen pixels' using python , like analogous to older dos( functions that graphics.h provides') or win api calls for gdi. what i want is to display clusters (in differetn colours) on screen using python. Almost any (or just any) GUI toolkit

Re: GDI in python?

2006-02-18 Thread al pacino
Thanks claudio, that should work out fine. -- http://mail.python.org/mailman/listinfo/python-list

GDI in python?

2006-02-17 Thread al pacino
hi, is it possible to address the 'screen pixels' using python , like analogous to older dos( functions that graphics.h provides') or win api calls for gdi. what i want is to display clusters (in differetn colours) on screen using python. thanks. --