Colors.jl
Colors.jl copied to clipboard
Color manipulation utilities for Julia
This may not be everything, but a few simple cases that were easy to update
Hi there! A few months back, I wrote a port of [this gist](https://gist.github.com/MicahElliott/719710) to convert RGB to XTerm256 colours (or their nearest approximation). **I don't know much about colours**. This...
Hello, I was having trouble imagining what various colours looked like in the REPL so I cooked up a little code to show me the colours. Should there be interest,...
Currently failing as the type doesn’t exist yet. To and from XYZ, everything else through XYZ. I’m using the original specifications provided here: https://bottosson.github.io/posts/oklab/ This is my first contribution to...
```julia using ImageCore using OffsetArrays function colorwheel(sz::Dims{2}, v=1) # H, S canvas = OffsetArrays.centered(fill(ARGB(0, 0, 0, 0), sz)) for I in CartesianIndices(canvas) x, y = I.I ./ (size(canvas) .÷ 2)...
As far as I understand [the documentation](https://github.com/JuliaGraphics/ColorTypes.jl#rgb-plus-bgr-xrgb-rgbx-and-rgb24-the-abstractrgb-group), the RGB color space being used by both this package and ColorTypes.jl is the [sRGB color space](https://en.wikipedia.org/wiki/SRGB). I do not understand whether a...
This is a preparation for supporting the Bradford transform. (cf. #278) This also updates the document for `whitebalance`. 
Road to 1.0
I'd like to move the whole JuliaImages stack to version numbers >= 1.0 (see JuliaImages/Images.jl#825). Let's use this issue to collect plans for breaking changes in the near future. Issues/PRs...
`default_brettel_neutral` is used as a reference value in the simulation of color deficiency. https://github.com/JuliaGraphics/Colors.jl/blob/f38f27caa31c428902fd2974dda657a117171278/src/algorithms.jl#L63-L65 Since sRGB has a white point of D65, this looks more straightforward with `convert(LMS, WP_D65)`. However,...
This is a matter of preference, but it's not a bad idea to make it clear which functions we are overloading as ”public" APIs. No additional changes are planned at...