-
In Section [17. Sample code for color conversions](https://drafts.csswg.org/css-color/#color-conversion-code) of the CSS Color Module Level 4 spec, there's a discrepancy with the D50 white point value…
-
This is the link in case you need more details
http://www.imagemagick.org/Usage/transform/#spread
-
## Summary (will be updated throughout the discussion)
Questions to answer:
- What belongs in the package?
- Phase 1 (immediately)
- [x] data type for representing colors
…
-
If I use the following code I would expect three tinted images, a red tint, green tint, blue tint. Here is what the code produces:
var c = color({r: 255, g: 0, b: 0});
//var c = color({r: 0, g: …
-
Quick question. To avoid this message from vipsthumbnail do I need to supply an appropriate icc profile?
-
Every color space has a range of colors it can represent: for some, like CIELAB, this is simply the entire gamut of human vision, for others (like sRGB) it is much smaller. It is often desirable to ge…
-
General Image processing question here. I'm fairly new to lower level image manipulation but have vips doing my basic things likes resizes and crops.
However, now I'm trying to get my images after r…
-
Minimum support:
- [x] RGB
- [x] RGBA
- [x] Hex: '#FFF'
- [x] HSL
- [x] HSLA
- [x] HSV
- [x] HSVA
- [x] Named colors: red, green, blue, (...)
cc: @makella
-
There is a paper by Burger called 'Color Space Considerations for
Linear Image Filtering' which basically points out that neither sRGB nor lineared sRGB space is an optimal choice for linear filtering…
-
Hi,
Would adding CIELab conversion in order to benefit from the L channel be out of scope for Less ? HSL or HSV are convenient and simple, but perceptually, changing L/S ot V/S is often far less effic…