This tutorial is perfect for beginners who wants to know what every line does or means. Thank you very much, you are a good teacher!
@mikebuck6750 Жыл бұрын
I don't usually comment, but your explanation of the code was really good and i as a non programmer understood.
@Reis-xh9uj4 ай бұрын
Tip: Want to give an update on this project? Change tkinter to customtkinter. I'm doing it here and it's looking cool. congratulations on the project
@BillyT83 Жыл бұрын
Enjoyable video with clear explanations!😀
@codefirstwithhala Жыл бұрын
Glad you liked it! Thanks for watching 😊
@bleedproc11 ай бұрын
thanks a lot.... your clear explanation really helped me in my presentation on pillow and tkinter where i used this project as an example. wish you all the best
@lphlolfr Жыл бұрын
Nice video ! It would be cool to be able to add a text box like in paint or powerpoint with the mouse to add text on the image. If we can find this in an old video or if you have references / code examples I'm interested!
@SarveRadhaNaam Жыл бұрын
when someone use MS Paint, you know things are about to get interesting.
@Chahath-kj7nz6 ай бұрын
How can i save the edited image and also can u pls tell me how to add "undo" and " redo" buttons for the editing with pen
@Xplouding Жыл бұрын
Hello, good video!! I have a question: why, if the first "Import" already brings the entire TKinter library, below you import "Filedialog", "ColorChooser" and "ttk"? Aren't they really already imported in the first "Import"? Or do we only import a chunk of the library, in that first line?
@geee76726 ай бұрын
....can I get an option/button to include that in a CMYK image I want the K to go into cyan or vice-versa. Or get the K completely out? But the system or application maintains and calculates that the image quality and output does not change from the original?
@Macude17 Жыл бұрын
AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS' help when i add photo it doesnt show up please help I'm losing my mind because we are just new then they give us a project like thesis 1st year
@saivardhanreddypasham Жыл бұрын
same problem to me have you got the solution
@Macude17 Жыл бұрын
@@saivardhanreddypasham havent yet bro
@DeepRockLabs Жыл бұрын
ANTIALIAS was removed in Pillow 10.0.0 (after being deprecated through many previous versions). Now you need to use PIL.Image.LANCZOS or PIL.Image.Resampling.LANCZOS. Good Luck!
@victoraguiar860 Жыл бұрын
Great tutorial. Keep it up!
@codefirstwithhala Жыл бұрын
Thank you! More on the way.
@saivardhanreddypasham Жыл бұрын
AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS' help when i add photo it doesnt show up please explain how to do solve the problem
@charmedcaster15 Жыл бұрын
yes me too i want a solution please@@saivardhanreddypasham if you found one tell me
@MrPennywise1540 Жыл бұрын
GREAT EXPLANATION!!! I enjoyed a lot and it work for me perfectly. Congratulations, you are a good teacher ☺👍
@rodelioliwag7627 Жыл бұрын
This is very good Hala, thank you
@PrallabRoy Жыл бұрын
Plz add a image save button ?
@johnylanckriet337711 ай бұрын
Hello, excellent videos and explanations. But after editing the image in the canvas, how can I save that edited image now?
@datastream33318 ай бұрын
Add this function into your code: def save_img(canvas, filename): eps_filename = f'{filename}.eps' canvas.postscript(file=eps_filename) canvas_img = Image.open(eps_filename) canvas_img.save(f'{filename}.png, 'png') os.remove(eps_filename) Now add the save button: button = Tk.Button(master=frame, text='Save Image', command=lambda: save_img(canvas, 'my_filename'))
@abhishekkuber3290 Жыл бұрын
how to save the image with drawings on it
@rupalivarnale7736 Жыл бұрын
How add crop fuction
@AiRuiz7 ай бұрын
Good answer to this problem, (image = image.resize((width, height), Image.ANTIALIAS)) answer (image = image.resize((width, height), Image.LANCZOS). Thanks for this tutorial, I did it very well until the end. Ask how I can make the pen have a sprite effect. or a spilled paint effect thanks.
@TalesOfHeilotia Жыл бұрын
Great content
@ibenuel7 ай бұрын
Good video... Learnt a lot but do best to explain well not just talking
@pradyumnrawat2722 Жыл бұрын
Hi you are amazing
@ЕгорАстафьев-г3х Жыл бұрын
Спасибо!!!
@vivek_itz Жыл бұрын
"kindly add save button in this also for saving that image" 🙏🙏🙏
@chrispieczora704911 ай бұрын
Received Error : AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS Tried PIL.Image.LANCZOS or PIL.Image.Resampling.LANCZOS. no luck, any help would be great, thanks