Тёмный

Using Icons, Images, and Exit Buttons - Python Tkinter GUI Tutorial #8 

Codemy.com
Подписаться 227 тыс.
Просмотров 299 тыс.
50% 1

How to use Icons, Images, and Exit Buttons with TKinter and Python. In this video learn how to use icons, images, and exit buttons in tkinter. Tkinter images, TKinter Exit Buttons, and TKinter icons are pretty easy - see how in this video!
In this series I'll show you how to create graphical user interfaces for Python with Tkinter. TKinter comes with Python already, so there's nothing to install!
✅ Watch The Other Videos In This Python Playlist:
bit.ly/2UFLKgj
▶️ See More At:
Codemy.com
✅ Join My Facebook Group:
bit.ly/2GFmOBz
✅ Subscribe To My RU-vid Channel:
bit.ly/2IGzvOR
▶️ Learn to Code at Codemy.com
Take $22 off with coupon code: youtube

Опубликовано:

 

1 июн 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 755   
@Codemycom
@Codemycom 4 года назад
▶️ Watch Entire Tkinter Playlist ✅ Subscribe To My RU-vid Channel: bit.ly/2UFLKgj bit.ly/2IGzvOR ▶️ See More At: ✅ Join My Facebook Group: Codemy.com bit.ly/2GFmOBz ▶️ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt! Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN
@jainajit2412
@jainajit2412 3 года назад
how to display multiple images in tkinter window. I have tried this code but its not working! from tkinter import * import os root = Tk() root.geometry('1000x600+180+50') list_img=[] for i in os.listdir(): if i.split('.')[1] == 'png': list_img.append(i) f1 = Frame(root,bg='black',borderwidth=5 ,relief=SUNKEN,) f1.pack(fill=BOTH) for image in range(0,9): photo_ = PhotoImage(file=list_img[image]) img_ = photo_.subsample(2,2) l = Label(f1,image=img_) l.pack(pady=5) root.mainloop()
@donaldppaul3260
@donaldppaul3260 3 года назад
There is a bug in my calculator .if we press equal to again after a mathametical operation it just do that same mathametical operation with result I mean is that a bug
@100jsj6
@100jsj6 2 года назад
@Codemy.com Hello sir ,I have an error : i cant really add the icon . i dont know why . heres what i did : root.iconbitmap(C:\Users\myuser\Desktop\Coding-Items\image.ico) # this doesnt work . can you give me suggestion ? Thanks
@Codemycom
@Codemycom 2 года назад
@@100jsj6 You probably aren't using a real icon file.
@100jsj6
@100jsj6 2 года назад
@@Codemycom Hello sir . Yes that maybe becoz i just renamed file from .png to .ico . I'll try an actual convertor for it . Here is the error thrown in the terminal if that'll help : Traceback (most recent call last): File "c:\Users\myuser\Desktop\Coding-Items\SPAM\Spam.py", line 13, in win.iconbitmap('SPAM_asset.ico') File "C:\Users\myuser\AppData\Local\Programs\Python\Python39\lib\tkinter\__init__.py", line 2080, in wm_iconbitmap return self.tk.call('wm', 'iconbitmap', self._w, bitmap) _tkinter.TclError: bitmap "SPAM_asset.ico" not defined I was adding an icon for a spamming app hence the weird names 😅😅 Thank you so much for replying sir and that too quickly !
@prakulsingla1363
@prakulsingla1363 3 года назад
This is the best playlist I can find on python GUI. Amazing.
@Codemycom
@Codemycom 3 года назад
Thanks! Glad you like it!
@Phizzo4real
@Phizzo4real Год назад
I have been going thru and learning a ton...
@cbaymac
@cbaymac 3 года назад
One of the best instructors on RU-vid. Your explanations and format are great. I am going to sign up for your full program. Thanks for all your hard work.
@marisko16
@marisko16 3 года назад
Man, you are explaining things just the way I would do. Perfect, thank you very much.
@Codemycom
@Codemycom 3 года назад
Glad you're enjoying it!
@greatindianbuilder2491
@greatindianbuilder2491 3 года назад
Thanks for vid, really help. I feel so lucky that I have access to so much information(and tutorials) without any charge.
@ozbekchawindows4236
@ozbekchawindows4236 3 года назад
You are so good... You are my hero! You know everything in Python...
@Codemycom
@Codemycom 3 года назад
Ha, hardly everything...but thanks!
@myselfsohit
@myselfsohit 4 года назад
I have a no words ....frankly speaking i enjoying a lot..thank you so much for your efforts for those can't afford paid courses..love you from INDIA.......
@Codemycom
@Codemycom 4 года назад
Thanks for watching!
@texloch1401
@texloch1401 Месяц назад
Your videos are amazing. They have been wildly helpful for me at work.
@Codemycom
@Codemycom Месяц назад
Glad to hear it!
@ashrsfsiliman452
@ashrsfsiliman452 3 года назад
Great job deserving of thanks عمل رائع يستحق الشكر
@alwayscubing8200
@alwayscubing8200 2 года назад
Hey buddy, so awesome...very useful. I have been searching tkinter gui tutorials and fortunately, i found u😃😃
@Codemycom
@Codemycom 2 года назад
Glad you did
@jorgearmandoperez1450
@jorgearmandoperez1450 3 года назад
Man you are my new favorite hero! thanks!
@Codemycom
@Codemycom 3 года назад
Wow, thanks!
@ndvz8672
@ndvz8672 2 года назад
Whats going on John! LOVE the content. Youre awesome, thank you!
@Codemycom
@Codemycom 2 года назад
thanks!
@keymediastudioitself
@keymediastudioitself 3 года назад
To avoid resizing put: # app = your root app.resizable(width=False, height=False)
@tomabrasoveanu
@tomabrasoveanu 2 года назад
how do i tell what my root is?
@100jsj6
@100jsj6 2 года назад
@@tomabrasoveanu the name "app" is a variable which contains tk.Tk() so this is what the code wud be: from tkinter import * # * signifies all #create a variable to host the app with the name of ur choice . im doing "hi" over here hi = Tk() #it will be tk.Tk() if u do "import tkinter " instead of "from tkinter import *" hi.resizable(width= False , height= False) hi.mainloop() #now ,the app wont be resizable
@100jsj6
@100jsj6 2 года назад
i hope i satisfied your question by giving an answer 😃😃
@Viicorico
@Viicorico 2 года назад
@@100jsj6 hi what do u mean by resizable ?
@100jsj6
@100jsj6 2 года назад
@@Viicorico i mean that the window isnt resizable
@katmanduYT
@katmanduYT 3 года назад
I did a program in the past without PIL but I just used img = tk.PhotoImage , can I know the difference between what I used and pil buttons?
@vic-san12
@vic-san12 2 года назад
I love your videos. I learned a lot from them. More power to you!
@Codemycom
@Codemycom 2 года назад
Thanks!
@namanchhibbbar2205
@namanchhibbbar2205 3 года назад
you are really awesome, highly appreciate your work
@Codemycom
@Codemycom 3 года назад
Thank you! I appreciate that!
@Zachomara
@Zachomara 3 года назад
For new people, PIL is in all caps. Also, you add Pillow from the command line with pip install Pillow. (Stack overflow apparently says its deprecated) Also, ImageTk, the "k" is not capitalized. It drove me nuts for about an hour before figuring it out. Also thank you for this video. Awesome content.
@Codemycom
@Codemycom 3 года назад
Was any of that not obvious in the video?
@Zachomara
@Zachomara 3 года назад
@@Codemycom I think my main mistakes with it was not hearing the part about the command line. I ended up going to try to install it within the python program at first, and went down a rabbit hole. I'd say user error was the main cause. That being said, I learned quite a lot from the videos so far. Like way more than any of the other videos I went through.
@Codemycom
@Codemycom 3 года назад
@@Zachomara Cool
@farmflight
@farmflight 3 года назад
@@Codemycom ok I keep getting this error code: "No module named 'PIL'" but I added pillow in the command line by using pip install pillow. Do you know what might be happening?
@Codemycom
@Codemycom 3 года назад
@@farmflight Did you pip install Pillow (capital P)? You'll have to google it, some people just have problems with it
@nihalthannegedarapremaratn2352
@nihalthannegedarapremaratn2352 4 года назад
Very helpful. Thanks you..... Hope continue.....
@Codemycom
@Codemycom 4 года назад
Glad you liked it...there's like 50 more videos in this playlist
@parsabahrambeik4381
@parsabahrambeik4381 3 года назад
Hi, thank you very much for your video. You helped me a lot with the database. AND.....
@Codemycom
@Codemycom 3 года назад
Happy to help!
@fsldr
@fsldr Месяц назад
thanks a lot man!
@Codemycom
@Codemycom Месяц назад
Welcome!
@yashar696
@yashar696 3 года назад
Thanks it was great & very useful♥♥
@Codemycom
@Codemycom 3 года назад
You're welcome 😊
@TahmidulAzomSany
@TahmidulAzomSany 3 года назад
Those who are getting delayed by the exit button: You can use root.destroy instead of root.quit
@ayaallahibrahimabdel-razek7971
@ayaallahibrahimabdel-razek7971 2 года назад
thanks that really helped me but why didn't root.quit work ?🤔
@daniyalmalik9441
@daniyalmalik9441 2 года назад
Thankyou Man
@marcmathieutrance6807
@marcmathieutrance6807 2 года назад
@@ayaallahibrahimabdel-razek7971 maybe its kind of deprecated or something
@aaronhojnacki6051
@aaronhojnacki6051 2 года назад
Thank you
@mehhh._.3704
@mehhh._.3704 2 месяца назад
Great Tutorial! I'm watching this 5 years later, but there's a function called Eval() in python. You could use this to make it a scientific calculator and make the evaluation function just evaluate the string.
@Codemycom
@Codemycom 2 месяца назад
yeah
@quangtram4672
@quangtram4672 3 года назад
Superb.
@preityvasudevankondath1731
@preityvasudevankondath1731 3 года назад
Hey, great course, helping me a lot during my projects Just a question, how to add a button on top of the image?
@Codemycom
@Codemycom 3 года назад
There's 100 videos on this playlist. I have several videos on buttons and images :-p
@siegfriedcoppens
@siegfriedcoppens 2 года назад
Good video!
@Codemycom
@Codemycom 2 года назад
Thanks!
@raniduharshana5238
@raniduharshana5238 4 года назад
Thank you very much. I learnt a lot about tkinter. 🤭❤️
@Codemycom
@Codemycom 4 года назад
Glad it was helpful!
@loicmahe2430
@loicmahe2430 4 года назад
Good evening If I want to put my image in one of the frames I've created, what do I have to add so it goes to the frame and not the main root Thank you and keepo going with this awesome videos you're making!!
@iannsa5390
@iannsa5390 4 года назад
suppose you wrote self.frame = Frame(self.mainWindow) then you have to place the image in the label and the label in the frame. then, you make self.my_label = Label(self.frame,image = ...)
@bea59kaiwalyakhairnar37
@bea59kaiwalyakhairnar37 2 года назад
Really helpful
@Codemycom
@Codemycom 2 года назад
glad you liked it!
@ashenravindu2480
@ashenravindu2480 Год назад
Thank you very much
@Codemycom
@Codemycom Год назад
Welcome!
@ArminEskandary
@ArminEskandary 2 года назад
ur a life saver
@Codemycom
@Codemycom 2 года назад
Happy to help!
@user-qw8mm6bt9p
@user-qw8mm6bt9p 3 года назад
THANK YOU
@Codemycom
@Codemycom 3 года назад
Welcome!
@tor6953
@tor6953 6 месяцев назад
Thank you
@Codemycom
@Codemycom 6 месяцев назад
welcome
@vexinity5151
@vexinity5151 2 года назад
Such a legend, oh my gosh.
@Codemycom
@Codemycom 2 года назад
Ha thanks
@Colaholiker
@Colaholiker 4 месяца назад
The iconbitmap() method seems to be a Windows only thing. For those using Linux (and possible MacOS - I don't have access to a Mac to verify this), another way of setting the icon must be taken. It took some effort to figure this out, so I'll share it here. This is the simplest way of doing it, there are more complex ways for multiple-size icons, etc. First, the .ico file format can't be used, so the image should be a PNG file. Then, the following code must be used, assuming that (as we do here), the root window is in a variable called root. root.iconphoto(False, tk.PhotoImage(file='') The file name can be just the image file name if it is in the current working directory during script execution or any absolute or relative path. Not all GUI environments in Linux have the window icon in the top left corner, but this also sets the icon used in the task bar.
@Codemycom
@Codemycom 4 месяца назад
Yes, it's a windows thing
@ShaiS0
@ShaiS0 4 года назад
First of all, just want to say I'm so happy I found your channel! informative clear and fun! So thank you for that. Now for my question - I've successfully added the ico and png files as demonstrated. But they only seem to work when I put the full path to them. If I try just the file name I get a "TclError bitmap "coffee.ico" not defined. same thing for the png. The files are in the same folder as the py file. using VS Code as my IDE if that matters
@ShaiS0
@ShaiS0 4 года назад
I've now tried running the same py file straight from the command line and it seems to be running fine. So I guess it's related to environment or path when running from VS Code. no clue as why though...
@Codemycom
@Codemycom 4 года назад
@@ShaiS0 Yeah that's why I don't use complicated editors like VS Code or Pycharm...there's always weirdness like that.
@ShaiS0
@ShaiS0 4 года назад
@@Codemycom Thanks for your reply. Well, that's a bummer. Though I guess I could still use it as an editor (quite like it) and just execute the old fashioned way from the CMD. Thanks!
@ShaiS0
@ShaiS0 4 года назад
Just an update - for those who end up in the same situation. It should be possible to change the settings so that relative path is resolved from the script file location and not from somewhere else - I couldn't make it work for me. What I did is I installed an extension to CODE called "Code Runner". It adds a right click context menu "run" action and a "run" icon at the top right side. This works similar to running the code manually from the terminal window. Unfortunately it doesn't work together with the debugger built in CODE but it's better than nothing.
@harshwardhanshirodkar769
@harshwardhanshirodkar769 3 года назад
@Codemy.com is there a way we can change the taskbar icon for the file too?
@Codemycom
@Codemycom 3 года назад
no
@yujiafu9484
@yujiafu9484 3 года назад
thank you
@Codemycom
@Codemycom 3 года назад
you're welcome!
@amankumarbairagi794
@amankumarbairagi794 4 года назад
Sir, Which type of editor do you use for programming in python ?
@Codemycom
@Codemycom 4 года назад
I use the sublime text editor and the git bash terminal
@mikhailkevin2505
@mikhailkevin2505 Год назад
good afternoon sir, i want to ask something about tkinter, can we display terminal python with it?
@crossfarm4146
@crossfarm4146 4 года назад
Can you guide me to a video, or some webpage that explains how to change windows within the same window? so for example, I want to have a start button, that when you click it the start button disappears, and then a new window appears (the same window) with different information. In the same way that HTML pages work with navigation. I found one video but the guy was going deep into using classes, which I don't have a firm grasp on it yet. Any of your videos go into this topic?
@Codemycom
@Codemycom 4 года назад
You can learn all of those things by watching my videos in my tkinter playlist.
@Spacekriek
@Spacekriek 5 месяцев назад
Great series, thank you very much. What I do find irritating about these software packages, IDEs etc is this trend to add plugins and packages afterwards. Never complete. It's like buying a car and discovering you still need a spare wheel, side view mirrors... Oh, do you need an engine too, sir ? No problem, just download it ! :)
@Codemycom
@Codemycom 5 месяцев назад
But when adding something happens in 10 seconds, for free...why does that bother you?
@Spacekriek
@Spacekriek 5 месяцев назад
@@Codemycom Just a work in progress, then. :)
@OsiRixxx
@OsiRixxx 2 года назад
if i need to give the code to someone else it will not open the images with my local dirctories, correct? or does python save the .ico internally in the code file? sorry for the dumb question, i am very new to this.
@Codemycom
@Codemycom 2 года назад
No it won't, unless you send them the images too.
@panosmalamis5389
@panosmalamis5389 2 года назад
Very helpful tutorial, but I am having problems with that pack function to bring in the function. How does that work? What does it do? Can anyone give me some more information?
@selinsabrcan2848
@selinsabrcan2848 2 года назад
Hello, I am having difficulty visualizing my png images. I currently have them in a file on my desktop called project_file. I am using "c:/desktop/project_file/imagename" but python is giving me an error. Can someone tell me what I'm doing wrong? Or how to fix this issue! Thanks
@ritajbhosale6816
@ritajbhosale6816 4 года назад
is there any way to make the picture\photo to be in circle\oval .. or how can i make the corners transparent of the image.. i can use any image just i want the picture to seen in circular format..
@oneilmw
@oneilmw 4 года назад
Image formats generally have four channels: a red channel, a green channel, a blue channel, and an alpha channel. The alpha channel is the "transparency" layer, and works just like the other three: each pixel has its own red, green, blue, and alpha value. If you turn the alpha value of the corner pixels to 0, you can get rounded corners. If you're looking for a way to automate this vignette within tkinter, good luck to you; it's probably a lot of work. Alternatively, you could (theoretically) make a corner image in your background color, anchor it to it's corresponding corner, then draw that on top of your image to trick the user into thinking that the image has rounded corners. I haven't tested it, but it is something to try.
@afrahtabassum7001
@afrahtabassum7001 3 года назад
Hi, This was extremely helpful! I am trying to use canvases in my school project and the main window has a button which opens up another window. Problem is I can't seem to destroy the main window once the new one has been opened. I used destroy() and although all the widgets and the background image is destroyed, it leaves an open window behind with the title as "tk". I can't seem to figure out the issue and hoped you could help me. Thanks! P.S, I am kinda new to your channel so I am sorry if a video already exists on this matter. P.P.S, IDK why I wrote it like an email even though it's a youtube comment cheers
@Carlos_SXB
@Carlos_SXB 10 месяцев назад
use your brain
@rice1345
@rice1345 5 месяцев назад
@@Carlos_SXB shit opinion detected.
@kenshin7440
@kenshin7440 8 месяцев назад
Thank you so much for the tutorial I started learning obsidian and emacs for 2 weeks and python about 3 days from now i had a very hard time setting up things but i made it work exept no matter what i ve done i get an error that shows the path nd if i remember it can't open file and bitmap stuff... I went with many solutions i added @ to path by the way im using deb12 i used .png instead of .ico and other things Should i try this? Is it same ? import tkinter as tk root = tk.Tk() root.title("Window with PNG Icon") # Load the PNG image icon_image = tk.PhotoImage(file="path_to_image.png") # Replace with your image path # Set the image as the window icon root.tk.call('wm', 'iconphoto', root._w, icon_image) root.mainloop() ``` I hope i can find a solution here
@kenshin7440
@kenshin7440 8 месяцев назад
Finally i made it work and the problem was with the file type it accepts only .xmb which is freaking ugly only black/white in the 50s or 60s I ll keep looking for another solution but why on windows is easy and beautiful while on linux is difficult nd ugly😢😢😢😢😢
@mbn-code
@mbn-code 3 года назад
its funny because i came from anothe one of your videos with the calculator and i made my own exit button, then now coming across this video was fun to see how you did it. my code for an exit button: (obviously with a simple gui) btw i am new and i made it so muc more complicated for myself trying o do it from tkinter import * root = Tk() root.title("exit button") root. def function(exit): pass def button_exit(): button_exit = function(exit()) button_exit = Button(root, text="exit", padx=40, pady=20, command=button_exit) button_exit.grid(row=1, column=0, columnspan=1) root.mainloop() but the only thing that worked in this video for me is the exit button the things with the pictures dident work
@FRIENDSofCAP
@FRIENDSofCAP 4 года назад
Hi, Tim here. Question... I am running a Mac Pro desktop computer running Mac oSX(Mojave) and using Visual Studio Code as my IDE with Python 3.7.4... I have tried adding 'mainWindow.iconbitmap('filename.ico) which includes any path prefixes but don't see any icon at all. Any ideas as to why this is? Any tips on addressing this issue? Any help is greatly appreciated. Thanks
@Codemycom
@Codemycom 4 года назад
Check this out for your answer... stackoverflow.com/questions/33134594/set-tkinter-python-application-icon-in-mac-os-x
@nadavAminov
@nadavAminov 3 года назад
I do not want to have a picture inside the pane. I want to have instead of the white background of the panel a picture that it will serve as a background. Do you have a video about it?
@onio1
@onio1 Год назад
Any way to fit an image to the size of a button? Or do the image needs to previously be the size of such button?! Great videos by the way! KUDOS!!!
@Codemycom
@Codemycom Год назад
sure
@fentonmsu
@fentonmsu 3 года назад
Wonderful, still using windoa 8.1
@Codemycom
@Codemycom 3 года назад
ouch lol
@MrSirPain
@MrSirPain 2 года назад
Thank you for the great instructor, please keep up the great work and I look forward to the videos. I can not install Pillow. I am getting a "SyntaxError: invalid syntax" error!!!
@Codemycom
@Codemycom 2 года назад
What's the exact error? the command is case sensitive
@mrmirchi3647
@mrmirchi3647 Год назад
Just a tip for mac users when installing modules/running code: If pip doesn't work, try pip3 And if python doesn't work try python3
@hawrezangana8240
@hawrezangana8240 2 года назад
Walter White teaches Tkinter like a boss.
@alexportal1985
@alexportal1985 3 года назад
Is there a way to make the image resize with the window? It would be great to have the image scale reduce of increase with expanding of the window.
@Codemycom
@Codemycom 3 года назад
Sure, but it's too complicated to discuss in a comment
@Manish_Kumar_04
@Manish_Kumar_04 3 года назад
Hi John, my side its showing unicode error, can't decode... whatever it is, also I'm not able to use pillow as you've told, what I'll do now?
@rahulsailwal4025
@rahulsailwal4025 4 года назад
Thank you so much. It didn't work for me, but made some tweak to make it work. Old code - img=ImageTk.PhotoImage(Image.open(path)) Tweak i have done - img=ImageTk.PhotoImage(Image.open(path),master=root)
@Codemycom
@Codemycom 4 года назад
whatever works for you
@7ash.34
@7ash.34 3 года назад
That work for me if someone is facibg unicode error try to use r like this root.iconbitmap(r'the place where data is store') It will work
@elchinefa9524
@elchinefa9524 3 года назад
Hi. Is the an option to run python program with double click? something like .exe file. Or i must create .bat file? Thanks in advance.
@Codemycom
@Codemycom 3 года назад
Yes, you can make them into exe files. Check the playlist, I have a video on that
@elchinefa9524
@elchinefa9524 3 года назад
@@Codemycom Thanks a lot, i'll check it tomorrow.
@Harish-ou4dy
@Harish-ou4dy 4 года назад
I converted my .jpg image into an .ico image using an online converter tool and used in my program. The icon in my window doesn't appear, but it shows a blank image.
@Codemycom
@Codemycom 4 года назад
maybe the converter tool sucks...
@infinitespace1982
@infinitespace1982 3 года назад
@@Codemycom Then what do you suggest?
@infinitespace1982
@infinitespace1982 3 года назад
What you're probably doing wrong is that you are not specifying the NAME of the ico file after the directory, e.g. 'c:/gui' is the directory and 'codemy.ico' is the name of the ICO file, thus you must typer the following: (r'c:/gui/codemy.ico') in full (DON'T FORGET THAT 'r')
@Codemycom
@Codemycom 3 года назад
@@infinitespace1982 Using a different tool...or making your own in photoshop or the free gimp or any other graphics tool that will let you make and icon.
@anushkamble85
@anushkamble85 3 года назад
@@infinitespace1982 Not admitting that he has maybe make a mistake
@user-yy5gq5by1h
@user-yy5gq5by1h 4 года назад
Hi, I got an error: "TclError: bitmap "iconoprueba.icon" not defined", the icon is in the same folder where the file ".py" is. What can I do?. I hope you can help me with that.
@Codemycom
@Codemycom 4 года назад
it should be iconoprueba.ico not iconoprueba.icon, that's why you got an error.
@atomic-blade6977
@atomic-blade6977 3 года назад
@@Codemycom i still get it any solutions
@emanuelshemesh
@emanuelshemesh 3 года назад
whn i try to run the pogram it says photoimage' object has no attribute '_photoimage__photo' any ideas what i should do??
@theepicguy6575
@theepicguy6575 3 года назад
Legend says this is series is epic
@Codemycom
@Codemycom 3 года назад
Ha thanks!
@drednot57
@drednot57 4 года назад
In Linux, one has to do this to put an icon in the title bar: import tkinter as tk root = tk.Tk() root.title('CharDB: PC Record Database App') root.tk.call('wm', 'iconphoto', root._w, tk.PhotoImage(file='chardb-gui.png')) root.geometry("1152x648") In Linux the iconbitmap() call can only use the XBM image format due to limitations of X-Windows system. XBM is a binary color format -- on or off, so images must be in B&W; no grey-scale or colors. Thus one needs to use a PhotoImage() call to put a custom icon in the title bar.
@Codemycom
@Codemycom 4 года назад
Good tip!
@sirvex7514
@sirvex7514 3 месяца назад
im gonna be honest mr heisenberg you look extremely cute with the doggo
@Codemycom
@Codemycom 3 месяца назад
Ha thanks
@yogeshrajgure2569
@yogeshrajgure2569 3 года назад
hey bro , remember that image that u load using PIL .. that is actually loading the image, but the size of window is growing too big to fit the screen, while same size of photo on ur computer is loading a pretty decent image.. may i know why.. by the way it is jpeg/jpg image
@Codemycom
@Codemycom 3 года назад
Likely because the image actually IS that big...but when you load it elsewhere on your computer, that thing you load it in resizes it.
@pragunashok6008
@pragunashok6008 3 года назад
when i try to add an icon, it gives error tkinter.Tclerror: bitmap "" is not defined
@espanolparatodos7758
@espanolparatodos7758 3 года назад
me toooo it's so annoying
@himanshushukla787
@himanshushukla787 3 года назад
Yeah It's happening with me on linux but on windows it's working
@100jsj6
@100jsj6 2 года назад
THAT IS THE EXACT SAME THING HAPPENING WITH ME @Peter Rezkalla i'll try that thanks
@syllakerfalla9516
@syllakerfalla9516 4 года назад
very goog
@Codemycom
@Codemycom 4 года назад
Thanks!
@Hyvexx
@Hyvexx 3 года назад
Im using tkinter on a Mac and it seems that for some reason, root.iconbitmap() doesn't work for me. It just changes the icon to a default Mac photo icon. Is there any way you know that allows me to get around this?
@Codemycom
@Codemycom 3 года назад
you'll have to google it...there are a bunch of options, and you'll have to try a few to get the one that works for you. stackoverflow is your friend
@Hyvexx
@Hyvexx 3 года назад
Codemy.com Oh ok
@michaelvidanes6629
@michaelvidanes6629 Год назад
Can you help me find a solution on retaining images in Tkinter? That's because the image just pops-up when loaded, the it disappers. Hope you can help me. Thanks.
@bibfocal
@bibfocal 6 месяцев назад
I found this to work on Linux if anyone has trouble with the icon.ico. Use a .gif instead. # Adding icon image in Linux img = PhotoImage(file="images/icon.gif") root.tk.call('wm', 'iconphoto', root._w, img)
@AshikurRahman-ny9ul
@AshikurRahman-ny9ul 4 года назад
Is quit a built-in method for pyCharm IDE?
@Codemycom
@Codemycom 4 года назад
The IDE you use is irrelvant...we aren't writing code for an IDE...we're just writing Python code
@harisankarpv9615
@harisankarpv9615 3 года назад
root.quit doesn't work for me but i use destroy instead of quit and that worked And thanks a lot for this free tutorial
@Codemycom
@Codemycom 3 года назад
If you're using IDLE, it won't work.
@oneilmw
@oneilmw 4 года назад
How can I use a relative path for the icon file, assuming it is in a sub-directory of the working file or project folder? For example: If I want to make a shareable application, I would have the icon arbitrarily on the storage, but it would always be in a consistent location relative to the script needing it. Think "Everything should go in the end-user-defined installation folder for the program I'm making."
@andersoncarlos7140
@andersoncarlos7140 4 года назад
python always use he mother paste as base of the search, when you open a need .py he's too use he mother paste, so if you put everything in "C://new paste//" everything will begin from there,, try to make everything in one paste so you can just go something like "C://new paste//images"
@andersoncarlos7140
@andersoncarlos7140 4 года назад
or you could do the hard wey and take explain from stackoverflow where you would use import sys to build a absolute path to the archive you want, this would make sure that every single desktop runs equal your things, but i dont think this is need for something simple, so the first explain work too just try to figure where you python begin search using archives .txt e open( ). i take me a while to figure where begin but afters this is pretty easy.
@oneilmw
@oneilmw 4 года назад
@@andersoncarlos7140 What's a "use he mother paste"? I have a hard time following your help if your help is nearly indecipherable. I don't mean to offend you, but a little proofreading goes a long way. I would find it very helpful if you do so here.
@andersoncarlos7140
@andersoncarlos7140 4 года назад
​@@oneilmw when i say mother paste is in true folder, sorry for we brazillian people this is called as paste e,e mb, as something abstract, my python has installed in "C://Python//Python.exe"
@andersoncarlos7140
@andersoncarlos7140 4 года назад
@@oneilmw fast way just go to where your python is installed create a 123.txt open the IDLE and try open('123.txt'), next create a new folder,paste with the name "texts" them create a another '123.txt' inside it and try open('texts//123.txt')
@douglasmonteirodasilva2421
@douglasmonteirodasilva2421 4 года назад
Hi John, Me here again haha. John I have been following your tutorial awhile and building an app aside with tips that I get from here. I tried and managed to make it work (switching frames in tkinter without having to call a new window). But when I try to insert an image inside of a class, the code runs but the image doesn't appear. any ideas what it could be ? regards, Douglas
@Codemycom
@Codemycom 4 года назад
I couldn't really guess...could be any number of things...
@aravindtlp
@aravindtlp 3 года назад
How did the my_label work without you mentioning that its in root? Thanks for the great content!
@darshanbothra2673
@darshanbothra2673 3 года назад
It automatically takes in the root window, i think this was an update or something, but yeah, that works
@crazyamygdala
@crazyamygdala 4 года назад
Hi! Thank you for the tutorial.Built calculator succefully. Working on the image module. Getting this error: AttributeError: module 'PIL.ImageTk' has no attribute 'Photoimage'. Googling isn't helping either. Working on python 3.7, PIL version 5.4.1, used syntax ' similar to yours. Help in this regard would be highly appreciated
@crazyamygdala
@crazyamygdala 4 года назад
Tried on IDLE and Spyder
@Codemycom
@Codemycom 4 года назад
The i in Image needs to be capitalized
@crazyamygdala
@crazyamygdala 4 года назад
@@Codemycom Thanks! Distracted mind = loss of situational awareness! Ha ha...Stay safe
@Codemycom
@Codemycom 4 года назад
@@crazyamygdala Happens to me allllll the time!
@muhammadakmalmaulanarizqy7807
@muhammadakmalmaulanarizqy7807 4 года назад
hello sir i got a problem this Traceback (most recent call last): File "C:\Users\USER\AppData\Local\Programs\Python\Python37\imges tkinter.py", line 7, in my_img = ImageTk.PhotoImage(Image.open(k)) NameError: name 'k' is not defined how can i do to solve this problem?
@Codemycom
@Codemycom 4 года назад
There's an error on line 7
@talefraim8118
@talefraim8118 2 года назад
Thank you so much. I can see the icon while running my code on windows. but, when i'm trying to run it on Linux, the main window is appearing without the icon, what can be the reason to that?
@Codemycom
@Codemycom 2 года назад
Windows icon files don't work on linux. You have to google linux icons for the solution
@borgyoh
@borgyoh 5 лет назад
at around 4:19 when you tested the quit button, i copied exactly what you types minus the image of course and my button shows up but it wont click. im using a mac btw.
@Codemycom
@Codemycom 5 лет назад
you might have a typo that you aren't noticing. Let me see your code..
@borgyoh
@borgyoh 5 лет назад
@@Codemycom not sure how i can show you without a screen shot. i copied your verbatim exactly. the button shows up but when i click , it doesnt do anything. i also had a problem with getting the image to show up in the window. ithe error is a "file not found" as in the location of the image file. i assume things are different on a mac. i copy the exact file address of the image and still get an error.
@Codemycom
@Codemycom 5 лет назад
​@@borgyoh you could copy and paste the code here
@borgyoh
@borgyoh 5 лет назад
@@Codemycom from tkinter import * from PIL import ImageTk , Image root = Tk() root.title("buttons and images") #skipped icon on header button_quit = Button(root, text= "exit program" , command = root.quit) button_quit.pack() root.mainloop()
@Codemycom
@Codemycom 5 лет назад
@@borgyoh in your button command, try comand = root.destroy. If that doesn't work, try import sys #at the top of your program button_quit = Button(root, text= "exit program" , command=sys.exit) if that doesn't work, still import sys, but create a function called quit import sys #at the top of your program def quit(): sys.exit() and call command=quit from your button
@diyankalaydzhiev7517
@diyankalaydzhiev7517 3 года назад
Hello, i have a question, when i add image and then delete it from the computer it can't run the code. So is there a way to load the image to the code so that is part of it?
@ReinierS
@ReinierS 3 года назад
You need to define a place to that image. Everytime you rerun the code it forgets everything in cache. So you can upload the photo on the internet and get it from there. Your code can't memorize your image
@aadityasahoo6244
@aadityasahoo6244 2 года назад
hey john, kudos on making an amzing playlist! coming to my question: im getting an error while doing this ```img = ImageTk.PhotoImage(Image.open(path)) AttributeError: type object 'Image' has no attribute 'open'``` so im chosing path from the askopenfilename method, and then applyiong it here but for some reason it doesnt work. any suggestions? Thanks.
@Codemycom
@Codemycom 2 года назад
did you pip install Pillow and import Image at the top of your file?
@aadityasahoo6244
@aadityasahoo6244 2 года назад
@@Codemycom thanks so much for replying! anyway, yes i did install pillow and import the image, and did everything u did, but for the life of me i cant figute out what it is that ive done wrong!
@Codemycom
@Codemycom 2 года назад
@@aadityasahoo6244 Set it aside for a couple days and look at it with fresh eyes...you probably just misspelled something
@dumidupramith3881
@dumidupramith3881 4 года назад
super
@Codemycom
@Codemycom 4 года назад
Glad you enjoyed it
@Franco-rd8du
@Franco-rd8du 4 года назад
Hi John, I am having an issue with pillow library, I installed from pip to the last version but every time I try to import the library I get the ModuleNotFoundError: no module named 'PIL'. I'm using visual studio code, but I tried it from Python.exe? (I don't know the name haha) and I get the same error, hope you can help me. Also, I googled this error but it wasn't helpful. Salut
@Codemycom
@Codemycom 4 года назад
Google "No module named 'PIL'" and you'll find a bunch of things to try...try em all till one works
@Franco-rd8du
@Franco-rd8du 4 года назад
Thanks for answering, I solved it, just had to open cmd and type pipe install pillow and worked
@Codemycom
@Codemycom 4 года назад
@@Franco-rd8du Nice!
@douglasmonteiro3085
@douglasmonteiro3085 4 года назад
Hi, I am getting the error : No module named 'PIL'. I have installed Pillow. and trying the other tips from stackoverflow/google. Do you have any Idea of what it can be?
@Codemycom
@Codemycom 4 года назад
It could be a bunch of different things. Google "No module named 'PIL'" and you'll find a bunch of things to try...try em all till one works :-p
@douglasmonteiro3085
@douglasmonteiro3085 4 года назад
@@Codemycom Hi Jhon I have spent the last week going over and over this error and I cannot figure it out haha, I have uninstalled and installed python again following the right procedure. unfortunately it still doesn't work. But I am stubborn haha. one question, when u do pip freeze you get a bunch of things installed, do they have any relation with this program? Also, if I have Image and Pillow installed can it be a problem ? I have tried them together, one or another by itself, but still nothing haha.
@douglasmonteiro3085
@douglasmonteiro3085 4 года назад
@@Codemycom After a long week trying different things, what has finally worked for me was...changing the editor. I was using pycharm and nothing worked out. with Atom things finally worked. finally I can keep going with the tutorial hahaha
@Codemycom
@Codemycom 4 года назад
@@douglasmonteiro3085 Awesome! Yeah I don't like pyCharm personally. I stick with Sublime Text and I never have a problem.
@tristangwithian4010
@tristangwithian4010 2 года назад
For those of you using Windows 10 and Idle (and I know Mr Elder says not to use Idle because it sucks!) who get the 'no module named PIL' error, I looked at lots of Google hits on this and tried a few things but eventually found I didn't get the error when simply running from the command line ('python images.py). It turns out I was running a version of idle from an earlier version of Python - Windows had simply bookmarked the old one so when I typed idle it suggested the old one. So, I found the version of idle commensurate with the version of python I'm running, which happens to be 3.9.7 and ran that instead (look for the file idle.py). If you don't know what version of python you are running, at the command line run simply 'python' and it will tell you the version (ok, this assumes you have python added to your 'path' environment variable, which is another topic). I'm rambling but in short, make sure you are running the version of Idle corresponding to the latest version of python you have installed.
@Codemycom
@Codemycom 2 года назад
Or just don't use idle
@Jumbjetsky
@Jumbjetsky 2 года назад
I have a hard time putting all this together to obtain what i need. I want the following: 1. click on icon open a window. 2. Window contains button or drop down, for "open file" to browse for a file containing txt/csv data 3. when file is opened, the pathway is obtained 4. A button with a built in function runs an analysis on the data. And visualizations are displayed for quality control check. 5. Button to submit data to a database I want all of the above to be on 1 window, even when data is displayed. But i cannot figure out whether tkinter can do that. I have only figured out to do this in a series of events composed of several windows which are opened, then closed for the next window to appear. Hope you can help
@Codemycom
@Codemycom 2 года назад
Yeah, there's nothing to all of that. I have videos on pretty much all of that in this playlist.
@vandanapal3011
@vandanapal3011 2 года назад
how to capture image and import then convert sketch in python can u send source code make button camera and sketch , import from gallery pic
@daggercentral9818
@daggercentral9818 3 года назад
Traceback (most recent call last): File "C:\Users\ACER\images.py", line 2, in from PIL import ImageTK,Image ImportError: cannot import name 'ImageTK' from 'PIL' (C:\Users\ACER\AppData\Local\Programs\Python\Python39\lib\site-packages\PIL\__init__.py) getting this error please help sir...
@tishaanants
@tishaanants 2 года назад
Ditto
@NamNguyen-um1eu
@NamNguyen-um1eu 3 года назад
use 64x64 image can help u fix TCL error maybe (window)
@TechWithSabri
@TechWithSabri 4 года назад
Hello sir can you tell me please what's the difference between btn_quit = Button(root,text='Exit',command = root.quit) and this btn_quit = Button(root,text='Exit',command = root.quit() ) when we call the method " quit " without parentheses it's working but when we call it with parentheses doesn't work why ? by the way thank you so much
@Codemycom
@Codemycom 4 года назад
in tkinter you don't use () to call functions.
@yeknom5g
@yeknom5g 3 года назад
Thanks for the tutorial ! There are many videos to go, but I look forward to making the applications. Anybody else struggling with the python idle ? For some reason it didn't want to close the program for the exit button (at least not all the way), but when I opened the same program in the pycharm application, it worked just fine.
@Codemycom
@Codemycom 3 года назад
I would never use IDLE for this. Use Sublime Text (free) and git bash terminal git-scm.com (free) like I do in the videos.
@VanoTitov
@VanoTitov 4 года назад
hello. can I take in my program not image, and python file?
@Codemycom
@Codemycom 4 года назад
Sorry, I don't understand
@yogeshwarns3821
@yogeshwarns3821 2 года назад
Sir.what is the compiler u are using??
@suryadev2207
@suryadev2207 2 года назад
Pycharm
@DrizztStrife
@DrizztStrife 2 года назад
For the icon root.iconbitmap(r'c:\_Python\Icons\icon.ico') I successfully remove the default feather icon, but it is replaced with a blank page icon. I've tried .ico images 512x512 and 256x256- what am I doing wrong?
@Codemycom
@Codemycom 2 года назад
I don't know, but that code doesn't look anything at all like mine. Maybe start there.
@digiajay
@digiajay 2 года назад
This is cool and I can update the icon on the window title. How can we update the icon on taskbar?
@Codemycom
@Codemycom 2 года назад
It's the same icon
@AJ-vw2cm
@AJ-vw2cm 2 года назад
@@Codemycom Yes, I just noticed that when I debug in the VS code it shows python icon in taskbar, however after building to executable, the exe picked up the icon
@SpinnTV
@SpinnTV 3 года назад
is there a way to use font awsome with python desktop app
@Codemycom
@Codemycom 3 года назад
No clue, sorry
@viswamberprasad9418
@viswamberprasad9418 3 года назад
I used the exact same lines as yours. i stored the icon as ".ico" in the same location(desktop) as my ".py" file,but when i run the code,it raises this error _tkinter.TclError: bitmap "C:/Users/Dell/Desktop/icon.ico" not defined. would really appreciate it if anyone can help me out!
@Codemycom
@Codemycom 3 года назад
Is the file a real ico file?
@thehappyopossum
@thehappyopossum 3 года назад
i am having the same issue also, if anyone knows a fix or suggestion to fix this, would be greatly appreciated
@viswamberprasad9418
@viswamberprasad9418 3 года назад
@@thehappyopossum hey bud,just make sure that it is a real .ico file and also that it is in a separate folder with your python file
Далее
Harder Drive: Hard drives we didn't want or need
36:47
Разница подходов
00:59
Просмотров 103 тыс.
iPhone or Android?😂📱🔥@milanaroller
00:13
Просмотров 2 млн
Cross-Site Request Forgery (CSRF) Explained
14:11
Просмотров 427 тыс.
Python Vs. PHP - Which Is Better?!
4:12
Просмотров 4,4 тыс.
but what is 'a lifetime?
12:20
Просмотров 57 тыс.
Transport Layer Security (TLS) - Computerphile
15:33
Просмотров 467 тыс.
Why I don't "using namespace std"
14:35
Просмотров 385 тыс.