So, I have tried displaying the same image, it should be able to display 10 of the same picture and I was also wondering where could use the pady and padx to space the pictures out.
Here is what I have tried so far:
for img in range(10):
canvas = Canvas(self.frame, width=30, height=30)
canvas.pack()
img = ImageTk.PhotoImage(Image.open("DicePic.jpeg"))
canvas.create_image(50, 50, anchor=NW, image=img)
self.frame.mainloop()