Andrew Murray
Andrew Murray
Pillow 10.2.0 has now been released with #7650. @DexterHill0 is this working now?
Following through the comments above, here is your last version. ```python import h5py from PIL import Image import numpy as np import gc def factors(x): result = [] i =...
> a test that `helper.hopper()` works for all image modes Why would we need to test that this runs without error for all image modes? `hopper()` isn't part of Pillow,...
I've created https://github.com/Yay295/Pillow/pull/13 with some suggestions.
I actually think Pillow does support this, as of Pillow 9.4.0, thanks to #6722 The test add in that PR draws 'par' and then 'adise' immediately after it. In the...
Ah, right, apologies. I just read 'sub-pixel text rendering' and presumed that it was text rendered at a position specified with less than a pixel.
Looking through the code, it looks like the only references to DCT are for encoding or decoding, not for the purpose of image transformation. So, no. Are you just asking...
If you're interested, OpenCV supports this operation - https://docs.opencv.org/2.4/modules/core/doc/operations_on_arrays.html#dct. If you think you have to choose between using either Pillow or OpenCV, you don't. You can convert images between the...
I've created PR #7788 to resolve this.
#6540 was created as an implementation of this, but was [closed](https://github.com/python-pillow/Pillow/pull/6540#issuecomment-1345462458), in favour of #6547. Does that mean this issue can also be closed?