Resizing PIL rgb image in tkinter application.

huangapple go评论98阅读模式
英文:

Resizing PIL rgb image in tkinter application

问题

背景

我正在创建一个小型幻灯片应用程序,允许显示图像。原始图像相当大(2000x2000像素),因此我希望将其重新调整大小以适应屏幕。这方面的工作如预期一样进行。

该图像本质上是一个数组,值范围从0到16位。为了让PIL显示颜色,我复制该数组,分别处理每个通道,转换为图像对象,重新调整大小并显示。在这里,重新调整大小似乎无法正常工作。

方法

我在下面分享了一个重现这个问题的最简代码版本,至少在我的系统上是这样的。

  1. import tkinter as tk
  2. import numpy as np
  3. from PIL import Image, ImageTk
  4. class MainApplication(tk.Frame):
  5. def __init__(self, parent, *args, **kwargs):
  6. tk.Frame.__init__(self, parent, *args, **kwargs)
  7. self.parent = parent
  8. self.images = {}
  9. self.load_image()
  10. self.show_image()
  11. def load_image(self):
  12. img = np.zeros((2000,2000))
  13. img[100:800, 100:800] = 255
  14. self.images[0] = img
  15. def show_image(self):
  16. img = self.images[0]
  17. img = np.repeat(img[:,:,np.newaxis], 3, axis=2)
  18. img = Image.fromarray(img, 'RGB')
  19. img = img.resize((1000,1000))
  20. img = ImageTk.PhotoImage(img)
  21. self.persistent_img = img
  22. self.canvas = tk.Canvas(self.parent, height=1000, width=1000)
  23. self.canvas.grid(row=0, column=0)
  24. self.canvas.create_image(0,0,anchor='nw', image=img)
  25. if __name__ == '__main__':
  26. root = tk.Tk()
  27. MainApplication(root)
  28. root.mainloop()

预期

实际上,如果只重新调整大小单通道图像,则上述代码可以正常工作:

  1. img = np.zeros((2000,2000))
  2. img[100:800, 100:800] = 255
  3. self.images[0] = img
  4. [...]
  5. img = self.images[0]
  6. img = Image.fromarray(img)
  7. img = img.resize((1000,1000))
  8. [...]

实际

Resizing PIL rgb image in tkinter application.

这是什么原因,有没有解决方法?非常感谢您的帮助!

英文:

background

I am creating a small slideshow application that allows for displaying an image. The original image is quite large (2000 by 2000 pixels), so I want to rescale it to fit the screen. This works as expected.

The image is essentially an array, with values ranging from 0 to 16 bit.
To get PIL to display colours, I triplicate the array, manipulate each channel individually, convert to an Image object, rescale and display. Here, the rescaling does not seem to work properly.

approach

I am sharing a barebones version of my code that repoduces this issue, at least on my system.

  1. import tkinter as tk
  2. import numpy as np
  3. from PIL import Image, ImageTk
  4. class MainApplication(tk.Frame):
  5. def __init__(self, parent, *args, **kwargs):
  6. tk.Frame.__init__(self, parent, *args, **kwargs)
  7. self.parent = parent
  8. self.images = {}
  9. self.load_image()
  10. self.show_image()
  11. def load_image(self):
  12. img = np.zeros((2000,2000))
  13. img[100:800, 100:800] = 255
  14. self.images[0] = img
  15. def show_image(self):
  16. img = self.images[0]
  17. img = np.repeat(img[:,:,np.newaxis], 3, axis=2)
  18. img = Image.fromarray(img, 'RGB')
  19. img = img.resize((1000,1000))
  20. img = ImageTk.PhotoImage(img)
  21. self.persistent_img = img
  22. self.canvas = tk.Canvas(self.parent, height=1000, width=1000)
  23. self.canvas.grid(row=0, column=0)
  24. self.canvas.create_image(0,0,anchor='nw', image=img)
  25. if __name__ == '__main__':
  26. root = tk.Tk()
  27. MainApplication(root)
  28. root.mainloop()

expected

In fact, this works with the code above, if I just rescale the one-channel image:

  1. img = np.zeros((2000,2000))
  2. img[100:800, 100:800] = 255
  3. self.images[0] = img
  4. [...]
  5. img = self.images[0]
  6. img = Image.fromarray(img)
  7. img = img.resize((1000,1000))
  8. [...]

Resizing PIL rgb image in tkinter application.

actual

Resizing PIL rgb image in tkinter application.

What is causing this, and is there a way around? Help is highly appreciated!

答案1

得分: 2

应该在np.zeros(...)中设置dtype=uint8以用于图像数据:

  1. np.zeros((2000, 2000), dtype=np.uint8)
英文:

Should set dtype=uint8 in np.zeros(...) for image data:

  1. np.zeros((2000, 2000), dtype=np.uint8)

huangapple
  • 本文由 发表于 2020年1月6日 23:54:15
  • 转载请务必保留本文链接:https://go.coder-hub.com/59615134.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定