Betsegaw
Betsegaw

Reputation: 131

Basic Drawing in Python

As a class project, I need to create a graphics library in Python. What is the most basic way I can create windows and access individual pixels? Tkinter seems like an over kill since it already has built-in methods to draw lines. Is there a more basic way to do graphics in python?

Upvotes: 2

Views: 4561

Answers (1)

Cris Stringfellow
Cris Stringfellow

Reputation: 3808

If you want to just create bitmaps and save them as jpeg or pngs or bmps see Save as image?

If you want to get graphics contexts and draw to the screen see How can I draw a pixel to screen in python? or Best Python library for drawing?.

If you want to play with Graphical User Interfaces see Python any good for GUI dev?

Upvotes: 3

Related Questions