tags:

views:

10

answers:

2

hello everyone, is it possible to resize an image using tkinter only?

A: 

As far as I know (and it's been a while since I've touched Tkinter), it's a GUI toolkit. The closest it comes to "images" is the PhotoImage class which allows you to load them up and use them in your GUIs. If you want to edit/alter an image, I think you'd be better of using the Python imaging library (PIL).

Noufal Ibrahim
A: 

thanks for the help

drakide