Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating an image editing application in Python

I need a tile/sprite editor kind of like Pixen, but I couldn't find one for Windows so I thought it might be a good exercise for me to try and put one together. I use Python, so are there any libraries out there that are suited to the task of putting together a simple tile/sprite editor?

like image 889
Enrico Tuvera Jr Avatar asked Jan 08 '10 14:01

Enrico Tuvera Jr


People also ask

What is an image editing application?

Alternatively referred to as graphic software or photo software, an image editor is a software program used to edit or otherwise manipulate an image, picture or graphic. One of the most popular and powerful image editors is Adobe Photoshop. A free alternative to Photoshop is GIMP.

Which software is used to create and manipulate images?

Available for both Windows and Mac devices, Photoshop is an extremely powerful application that's used by many professional photographers and designers.

What is image processing in Python?

Image processing allows us to transform and manipulate thousands of images at a time and extract useful insights from them. It has a wide range of applications in almost every field. Python is one of the widely used programming languages for this purpose.

Can you put an image in Python?

To display an image requires the use of Image and ImageTk imported from the Python Pillow (aka PIL) package. A label widget can display either PhotoImage or BitmapImage objects: The PhotoImage class is used to display grayscale or true color icons, as well as images in labels.


1 Answers

You just need a gui toolkit (gtk, qt, wx) a image library (PIL) and 500 hours of free time ...

like image 172
Jochen Ritzel Avatar answered Sep 19 '22 03:09

Jochen Ritzel