Pillow icon indicating copy to clipboard operation
Pillow copied to clipboard

Python Imaging Library (Fork)

Results 418 Pillow issues
Sort by recently updated
recently updated
newest added

### What did you do? 1. I'm using Pillow to create many individual images which I then stitch together to create a lyrics video for a song. - The app...

Font Rendering

### What did you do? I am quantizing many images to the same palette and colors are often not picked to be ideal values, instead being mapped to close values...

Palette

See https://jpeg.org/jpegxl/ since JPEG-XL is coming out in a few months Also https://google.github.io/brunsli has a sample app Co-referencing https://ai.google/research/pubs/pub48554 and https://www.iso.org/standard/77977.html

Enhancement
JPEG

BC5 is currently not supported by Pillow. There is already some code in the repo that can read BC5 files. I would have made a PR for this but I'm...

Enhancement

I've been looking at applying typing to some code which uses PIL/pillow. Is there any feeling regarding the addition of type annotations within Pillow, or if these belong outside the...

Enhancement
Type hints

I'd like to be able to perform JPEG2K encoding of medical images using Pillow, particularly 16-bit signed greyscale (commonly used with CT and MR). Because of the limited supported `modes`...

Enhancement
JPEG

### What did you do? I was trying to create an Image from a numpy array using Image.fromarray(array, mode) and validate the created image by using the show() function. It...

NumPy

I have a pic: ![391](https://user-images.githubusercontent.com/16349466/55764637-73dd5980-5a3a-11e9-8395-76e7eebac6fe.jpg) Do some conversion: ```python AB = Image.open("./391.jpg").convert('RGB') arr=np.array(AB) [email protected]([0.2125, 0.7154, 0.0721]) # gray scale now ``` Whatever mode you use, it just looks like fucked...

Conversion

We have a jpeg in our Wagtail app for which we can't generate an image rendition. An `OSError` is thrown from the `_save` method in `ImageFile.py`. We isolated it the...

JPEG
Needs Example

### What did you do? I need to save to save huge image files (approx. 819200x460800 RGBA). This is too much for anyone's RAM so I have to save it...

Enhancement
TIFF