About 23,200,000 results
Open links in new tab
  1. python - how to install PIL with pip? - Stack Overflow

    Jul 19, 2021 · Traceback (most recent call last): File "image_viewer.py", line 2, in <module> from PIL import ImageTk, Image ImportError: No module named PIL but I already install Pillow and …

  2. python - ImportError: No module named PIL - Stack Overflow

    from PIL import Image "Pillow is a fork of PIL, the Python Imaging Library, which is no longer maintained. However, to maintain backwards compatibility, the old module name is used." …

  3. How to show PIL images on the screen? - Stack Overflow

    Jan 20, 2016 · PIL's built-in show() method is the simplest possible version of the "script some other program to show it". (On earlier Windows systems you'd end up with a whole bunch of …

  4. python - No module named 'PIL' - Stack Overflow

    Mar 13, 2018 · To fix the issue, I uninstalled PIL and Pillow through sudo pip3 uninstall pillow and sudo apt-get purge python3-pil. I then restarted and then used sudo -H pip3 install pillow to …

  5. python - Getting list of pixel values from PIL - Stack Overflow

    Problem seems to be the conversion to a standard python list. If I call just pixels=im.getdata() (which returns a special, simplified, list type) everything is fine. If I add the cast, however, …

  6. How do I resize an image using PIL and maintain its aspect ratio?

    The Python 3 documentation for PIL says that thumbnail only works if the resulting image is smaller than the original one. Because of that I would guess that using resize is the better way.

  7. How to show PIL Image in ipython notebook - Stack Overflow

    Aug 20, 2015 · display(pil_im) Jupyter will also show the image if it is simply the last line in a cell (this has changed since the original post). Thanks to answers from @Dean and @Prabhat for …

  8. python - Open PIL image from byte file - Stack Overflow

    Oct 2, 2015 · I have this image with size 128 x 128 pixels and RGBA stored as byte values in my memory. But from PIL import Image image_data = ... # byte values of the image image = …

  9. Why can't Python import Image from PIL? - Stack Overflow

    Oct 22, 2014 · from PIL import Image However simple this may seem, it gives an error:

  10. How can I convert an RGB image into grayscale in Python?

    Aug 30, 2012 · I'm trying to use matplotlib to read in an RGB image and convert it to grayscale. In matlab I use this: img = rgb2gray(imread('image.png')); In the matplotlib tutorial they don't …