I would like to display an image using tkinter (Python 3). The image is very long. Therefore, I would like to add a vertical scrollbar. This is what I have tried:
(b
Put the line:
canvas.config(scrollregion=canvas.bbox(tkinter.ALL))
after:
canvas.create_image(0,0,image=img, anchor="nw")
or canvas does not include image in scrollregion.