You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's not a super common use-case but when images from multiple sources are brought together they can make a design look somewhat "off".
It's possible for Tachyon to support colour grading using .cube files typically used with programs like Lightroom to apply transformations across multiple images to normalise the colourspace and luminance etc.
After a bit of research we could potentially use the following libraries:
The trickier part of this is how to get or specify the .cube file to be used. The most flexible way would be to fetch it from a URL specified in a query param and cache it strongly but initial image loads could be super slow with this method.
We'd also want to ensure that the .cube file was coming from the same domain as the original image request. Shouldn't be too hard but would need to check very carefully how that's handled when using nginx rewrites to pipe requests to a tachyon service within a network.
The text was updated successfully, but these errors were encountered:
Been tinkering with some ICC profile based transforms at a low level in sharp as libvips doesn't really have any easy way to apply/use 3D LUTs right now and using the node packages described in the initial comment was super slow.
It's not a super common use-case but when images from multiple sources are brought together they can make a design look somewhat "off".
It's possible for Tachyon to support colour grading using
.cube
files typically used with programs like Lightroom to apply transformations across multiple images to normalise the colourspace and luminance etc.After a bit of research we could potentially use the following libraries:
The trickier part of this is how to get or specify the
.cube
file to be used. The most flexible way would be to fetch it from a URL specified in a query param and cache it strongly but initial image loads could be super slow with this method.We'd also want to ensure that the
.cube
file was coming from the same domain as the original image request. Shouldn't be too hard but would need to check very carefully how that's handled when using nginx rewrites to pipe requests to a tachyon service within a network.The text was updated successfully, but these errors were encountered: