Ondrej Baranovič
Ondrej Baranovič
> Hello, now i am puzzled, your code: ```python new_image = ImageCms.profileToProfile(current_image, io.BytesIO(profile), srgb_profile) ``` > and my code: ```python transformed_profile = ImageCms.buildTransformFromOpenProfiles(io.BytesIO(profile), srgb_profile, current_image.mode, "RGB") current_image = ImageCms.applyTransform(current_image, transformed_profile)...
> I found another font where the "J" isn't displayed or rather computed correctly. This time it is [Littlelordfontleroy](https://github.com/python-pillow/Pillow/files/1120675/littlelo.zip). When I try this with a somewhat recent build of master,...
I believe this is resolved.
Adding libavif to MSYS2 fails to compile due to a few missing defines (`AVIF_CHROMA_UPSAMPLING_AUTOMATIC`, `AVIF_CHROMA_UPSAMPLING_FASTEST`, `AVIF_CHROMA_UPSAMPLING_BEST_QUALITY`): https://github.com/nulano/Pillow/runs/1683386633?check_suite_focus=true#step:5:77
@392781 What font are you using?
Can you share your code? I have only found one reproduction so far: ```python fnt = ImageFont.truetype("FSEX302.ttf", 43, layout_engine=ImageFont.LAYOUT_BASIC) draw.fontmode = "1" # or image = Image.new("1", ...); draw =...
Checking `font.getsize` with a debugger I have found that this is in fact an issue with the font. For example, the width of `#` is 70 in font units with...
The examples in your repo look really good! I would suggest you try installing Raqm, that might sidestep the spacing issue as it ignores hinting for text layout, only rendering...
Unfortunately, I don't think it is possible to do what you are trying to do. Windows seems to only draw the current desktop, see this [Stack Overflow question](https://stackoverflow.com/q/45143835/1648883).
PrintWindow uses a different mechanism not involving the Desktop Window Manager (which is AFAIK the layer implementing virtual desktops on Windows), so it makes sense that it works for this....