Pillow
Pillow copied to clipboard
Python Imaging Library (Fork)
### 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...
### 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...
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
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...
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...
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`...
### 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...
I have a pic:  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...
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...
### 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...