Home > Blockchain >  Tkinter Canvas without white background (make it transparent)
Tkinter Canvas without white background (make it transparent)

Time:11-29

Hi I'm trying to make a canvas to create images onto it, but when I create the canvas, it has this ugly white background.

test_canvas = Canvas(main_window,100,100, bd=0, highlightthickness=0)

And after placing it, it has a white background.

Is there anyway to remove that background and make it blend in (be transparent)?

Here's an image to see the problem (I want that white background to disappear and blend in with the rest of the background)

enter image description here

  • Related