Python tkinter: display only part of image

This only displays the bottom right corner of my image. What am I doing wrong?

from Tkinter import *
from PIL import Image, ImageTk

class Application(Frame):
    def __init__(self, titl, master=None):
        Frame.__init__(self, master)
        self.grid()

        self.create_widgets()
        self.master.title(titl)

    def create_widgets(self):

        image_file = 'sample.jpg'
        image1 = ImageTk.PhotoImage(Image.open(image_file))
        w = image1.width()
        h = image1.height() 
        self.canvas = Canvas(self, width=w+5, height=h+5)
        self.canvas.grid(row=0, column=0)
        self.canvas.create_image(0,0, image=image1)
        self.canvas.image = image1

app = Application('Image')

app.mainloop()
+5
source share
1 answer

You must set the binding to NW(NorthWest), since the default is a value CENTERthat, as the name suggests, center the image at the given coordinates:

self.canvas.create_image(0,0, image=image1, anchor=NW)

Or you can change this later if you keep the image id:

self.idImage = self.canvas.create_image(0,0, image=image1)
...
self.canvas.itemconfig(self.idImage, anchor=NW)

http://effbot.org/tkinterbook/canvas.htm#Tkinter.Canvas.create_image-method

+7
source

All Articles