Lovell Fuller

Results 604 comments of Lovell Fuller

Please see the following documentation for help debugging font discovery: https://sharp.pixelplumbing.com/install#fonts https://www.freedesktop.org/software/fontconfig/fontconfig-user.html#DEBUG Please also upgrade to the latest version of sharp. Watch out for quotes around font names. Some platforms...

It looks like you've got a problem with fonts on this machine in general. How are you installing fonts? Via `apk`? Which packages? Are you able to try a less-minimal...

@tt-abetemadi Were you able to make any progress with this?

Thanks for reporting, this appears to be due to the way that Windows exposes filesystem data to C code. Here's the logic in sharp that reads the size of the...

I had a quick look at what might be required for this. https://github.com/lovell/sharp/compare/upgrade-to-c++17 https://github.com/lovell/sharp/actions/runs/7594372372 - Linux: Full C++17 support was added in gcc 9 (I tried a few linker flags...

I think this image might be slightly corrupt (there are quite a few unknown TIFF tags) and/or have invalid/unexpected data. This is likely to relate to bit depth - the...

@ShareQiu1994 Were you able to make any progress with this?

I think the current behaviour is expected. Bicubic interpolation tends to over-sharpen and can introduce ringing artefacts, which is what we're seeing here. Have you tried bilinear, which I think...

It's been a while since sharp v0.13.0 but IIRC, the interpolator provided via `interpolateWith` was used for the final stage of the image reduction. In the provided examples, scaling from...

Did you see https://sharp.pixelplumbing.com/api-colour#tocolourspace ? ```js await sharp(input) .toColourspace('rgb16') .toFile('16-bpp.png'); ``` In addition, if you hadn't seen it, https://github.com/donmccurdy/glTF-Transform uses sharp under the hood and may be of interest.