Andrew Murray
Andrew Murray
Closing as part of #3159
@jdufresne as the author of #3577, which introduced the [6.1.0 change](https://pillow.readthedocs.io/en/stable/releasenotes/6.1.0.html#image-del), did you have any thoughts on this?
> Another approach would be to rely on testing. If we can make the claim "this doesn't break our tests" and "We're pretty sure it won't break other peoples' code"...
In the absence of other opinions, I'm going to close this in favour of backwards compatibility.
The "I" mode has a range of int32, so it makes sense to me for that to become int32 when converted to NumPy. You specifically called out uint32 -> int32,...
I've created PR #7049 to resolve this.
https://github.com/google/pik now states > There is currently no development going on here. Parts of this project have been used in [JPEG XL](https://github.com/libjxl/libjxl), which is under active development. and > Note...
If I understand correctly, SSDV is a subset of the JPEG format - meaning that SSDV images can already be read by Pillow. It isn't clear if the request here...
When I run your initial code, ```python import h5py import gc from PIL import Image import numpy as np def test(): f = h5py.File("test.hdf5", "w") dset = f.create_dataset("test", (100000,100000,4), dtype=np.uint8,...
You might be interested to know that because your image isn't being saved with any compression, the `quality` argument isn't having any effect. However, because your image isn't using any...