使用滚动条在Tkinter中显示多个图像

时间:2016-04-17 00:50:48

标签: python tkinter python-2.x

我想设计一个小部件,显示堆叠在一列中的固定大小(300x300)的多个图像。为此,我创建了一个大小为300x800的文本小部件,然后在其中添加了图像标签。我在下面的例子中添加了4张图片。由于堆叠图像的总垂直尺寸较大,因此它扩展了文本小部件的大小,并且它甚至不适合屏幕。我希望所有图像都保留在文本小部件中而不扩展它,并向文本小部件添加滚动条,以便我可以滚动并查看所有图像。在下面的代码中,我可以添加滚动条,但它不起作用。

from Tkinter import *
import ttk
from PIL import *
from PIL import Image
import os
root = Tk();

text = Text(root, width = 300, height=300)
text.grid(row=0, column=0)
text.grid_propagate(False)


class ImageLabel:
    def __init__(self, master, img_file):        
        label = Label(master)
        label.img = PhotoImage(file=img_file)
        label.config(image=label.img)
        label.pack(side="bottom")

## Adding images to text widget
width = 300
src = "./"
my_item_id = 770353540339
count = 0;
file_name = str(my_item_id)+'_'+str(count)+'.jpeg';
full_file_name = os.path.join(src, file_name)

imagelabels = []
while os.path.isfile(full_file_name):
    im = Image.open(full_file_name)
    height = width*im.size[1]/im.size[0]
    im.thumbnail((width, height), Image.ANTIALIAS)
    im.save(str(count),'gif')
    imagelabels.append(ImageLabel(text, str(count)))
    count = count+1;
    file_name = str(my_item_id)+'_'+str(count)+'.jpeg';
    full_file_name = os.path.join(src, file_name)
    print(count)

## Adding scrollbar
scrollbar = Scrollbar(root, orient=VERTICAL, command=text.yview)
scrollbar.grid(row=0,column=1, sticky='ns')
text.config(yscrollcommand=scrollbar.set)

root.mainloop()

1 个答案:

答案 0 :(得分:0)

如果您使用文本小部件来包含图片,则必须使用image_createwindow_create方法,而不是使用pack将图片放入小部件中。您还需要在每个图像之后插入换行符以使它们垂直堆叠。