Posts by igortbr • 1 point
1 post
-
0
votes1
answer396
viewsA: Remove image background with Tkinter
The only way I know for the images to have a transparent background is to make them canvas... from tkinter import * j = Tk() canvas = Canvas(j, bd=0, highlightthickness=0) canvas.pack() image =…