Scrollbars for a .jpg image on a Tkinter Canvas in Python Scrollbars for a .jpg image on a Tkinter Canvas in Python tkinter tkinter

Scrollbars for a .jpg image on a Tkinter Canvas in Python


You need to tell the canvas what part of the drawing space to scroll. Use something like:

canvas.config(scrollregion=canvas.bbox(ALL))

More information can be found here: http://effbot.org/tkinterbook/canvas.htm#coordinate-systems