I'm using Python with Tkinter. As you can see in the image, how can I make a circular button? Because with the regular button, if I add an image there are the grey edges of the button. How to solve this?
import pyttsx3
import webbrowser as web
import speech_recognition as sr
from tkinter import *
from PIL import Image,ImageTk
from ctypes import windll
windll.shcore.SetProcessDpiAwareness(1)
window = Tk()
window.title("Gnocca Virtuale")
window.call("wm", "iconphoto", window._w, PhotoImage(file="trasparente.png"))
window.geometry("1100x700")
window.state("zoomed")
foto_robot = PhotoImage(file="robotagnocca.png")
etichetta_robot = Label(window,image=foto_robot)
etichetta_robot.place(relx=0,rely=0)
foto= (Image.open("bottone.png"))
resized_image= foto.resize((150,150))
new_image= ImageTk.PhotoImage(resized_image)
bottone_parla = Button(window,image=new_image)
bottone_parla.pack()
window.mainloop()