Andrew Murray
Andrew Murray
> How does packing work without a packer? You think that Pillow is currently packing without a packer, for some scenario? Could you provide an example of that scenario? >...
#7978 has been merged, deprecating these modes, so I'm in favour of closing this, rather than introducing a breaking change to deprecated functionality.
What is the benefit of `(void)` over `()`? It's just a stylistic choice right, to try and more clearly communicate that there are no arguments? If this is the general...
> Casting is already used for this reason None of those castings involve functions that have `(void)` for their parameters.
What is the benefit of `(void)` over `()`? It's just a stylistic choice right, to try and more clearly communicate that there are no arguments?
I understand there's a lot of repetition in this file, but I don't think that this version is easier to understand. If others think it is easier to understand, that's...
While I recognise I'm not [as fond of parametrisation as others](https://github.com/python-pillow/Pillow/pull/6531#issuecomment-1225680091), I think over 200 and 500 lines of code to construct the parameters is a bit much. If the...
Are you able to put together a Dockerfile that demonstrates the need for this?
Yes, this is format that Pillow does not support yet. See https://pillow.readthedocs.io/en/stable/handbook/image-file-formats.html for the formats Pillow does support. #5201 has been created as a possible solution.
If I run [pngcheck](http://www.libpng.org/pub/png/apps/pngcheck.html) over your image, I get > CRC error in chunk pHYs (computed eee74573, expected c76fa864) To skip the check in Pillow, use ```python from PIL import...