Thomas

Results 176 comments of Thomas

Fixed by https://github.com/actions/actions-runner-controller/pull/2374?

I want to note this does not happen with other filesystems like ext4. ```sh @uhthomas ➜ /workspaces/codespaces-blank $ docker run --privileged ghcr.io/uhthomas/automata/ntfs3g:809dbe17df677e1c47e571ab0129d088bb32853a sh -c 'fallocate -l 5M test.img && device=$(losetup...

> Well, first of all, I am no developer at all. Just reading through this thread and a couple of more it seems like [this issue](https://github.com/lovell/sharp/issues/3612) here is relevant, another...

This is the Debian bug tracker link: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1038637 You may want to test with the latest release of Debian, or Debian unstable to ensure it genuinely hasn't been resolved.

> is there a simple one line test printing all available libvips formats? We need to move forward at least baby steps > > next step is printing all sharp...

> Hello, how have this been tested? Still testing, which is why it's a draft PR. Having some trouble with it as the images are still dull.

http://www.gballard.net/psd/go_live_page_profile/embeddedJPEGprofiles.html explains what I'm seeing quite well. I think we have to get the correct colour profile and convert it to srgb. Looking into this now.

Given https://github.com/lovell/sharp/pull/2271#issuecomment-659414394, I'm not sure sharp actually supports this. I've tested a few variations of things and sharp will either produce an srgb image with muted colours, or preserve the...

I have made a bit of progress. I can actually convert an AdobeRGB image to sRGB successfully with imagemagick. ```sh ❯ convert _DSC3256.jpg -profile /usr/share/color/icc/colord/AdobeRGB1998.icc -profile /usr/share/color/icc/colord/sRGB.icc out.jpg ``` Which...