Color data structures, converters, comparators, and arithmetic operators
This repository requires Rust language/compiler to build from source
As of last update to this ReadMe file, the recommended method of installing Rust is via the installer script...
Bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
This repository is a Rust library, define it as a dependency within a project Cargo.toml
file...
Cargo.toml
(snip)
toml
[dependencies]
color-operators = "0.0.1"
Check Rust -- Doc -- Specifying Dependencies for details about defining dependencies.
Then include within a source file via use
statement...
src/main.rs
(snip)
```rust extern crate color_operators;
use coloroperators::hsl::HSL; use coloroperators::hsv::HSV; use color_operators::rgb::RGB; ```
Create a project if one does not already exist...
```Bash cargo init hsl-to-rgb
cd hsl-to-rgb ```
Add this crate as a dependency...
Cargo.toml
(snip)
toml
[dependencies]
color-operators = "0.0.1"
argparse = "0.2.2"
Note,
argparse
is optional and only included to ensure following example functions as shown
Write code that utilizes this crate...
src/main.rs
```Rust extern crate argparse; use argparse::{ ArgumentParser, StoreOption };
extern crate json;
extern crate coloroperators; use coloroperators::rgb::RGB; use color_operators::hsl::HSL;
fn main() {
let mut redargument: Option
{
let mut ap = ArgumentParser::new();
ap.set_description("Convert RGB to HSL representation");
ap.refer(&mut red_argument).add_option(
&["--red", "-r"],
StoreOption,
"Red component"
);
ap.refer(&mut green_argument).add_option(
&["--green", "-g"],
StoreOption,
"Green component"
);
ap.refer(&mut blue_argument).add_option(
&["--blue", "-b"],
StoreOption,
"Blue component"
);
ap.parse_args_or_exit();
}
let red = red_argument.unwrap_or_default();
let green = green_argument.unwrap_or_default();
let blue = blue_argument.unwrap_or_default();
let rgb = RGB::new(red, green, blue);
let hsl = HSL::from(rgb);
println!("{:?}", hsl);
} ```
Test conversion with various options...
```Bash cargo run -- -r 255
cargo run -- -g 255
cargo run -- -b 255
cargo run -- -r 42 -b 42
```
This repository may not be feature complete and/or fully functional, Pull Requests that add features or fix bugs are certainly welcomed.
Warning color conversion is not guaranteed to be fully reversible! For example 25 + 25
may not result in 50
after conversions, where as 24 + 24
will usually equal 48
... This seems to often be because of binary and decimal conversions and arithmetic.
Examples may be found within the examples/
directory and run to test conversions and other features;
```Bash cargo run --example rgb-to-hsl -- -r 255
cargo run --example rgb-to-hsv -- -g 255
```
For regular operations this project depends;
hex
crate provides hexadecimal string to decimal parsing
json
crate allows for string serialization and de-serialization
Examples depend on;
argparse
carte provides command line argument parsing and type coercionLents depend on;
clippy
crate throws errors and warnings for common code-smellsOptions for contributing to color-operators and rust-utilities
Start making a Fork of this repository to an account that you have write permissions for.
git@github.com:<NAME>/<REPO>.git
...```Bash cd ~/git/hub/rust-utilities/color-operators
git remote add fork git@github.com:
```Bash cd ~/git/hub/rust-utilities/color-operators
git commit -F- <<'EOF' :bug: Fixes #42 Issue
Edits
<SCRIPT-NAME>
script, fixes some bug reported in issue
EOFgit push fork main ```
Note, the
-u
option may be used to setfork
as the default remote, eg.git push -u fork main
however, this will also default thefork
remote for pulling from too! Meaning that pulling updates fromorigin
must be done explicitly, eg.git pull origin main
https://github.com/<NAME>/<REPO>/pull/new/<BRANCH>
Note; to decrease the chances of your Pull Request needing modifications before being accepted, please check the dot-github repository for detailed contributing guidelines.
Tip check for TODO
lines for known arias that may cause issues, as well as portions of code that are excellent targets for new Pull Requests...
Bash
grep -C3 -ri 'todo' src/**/*.rs
Thanks for even considering it!
Via Liberapay you may ![sponsorshields_ioliberapay] on a repeating basis.
Regardless of if you're able to financially support projects such as color-operators that rust-utilities maintains, please consider sharing projects that are useful with others, because one of the goals of maintaining Open Source repositories is to provide value to the community.
``` Color data structures, converters, comparators, and arithmetic operators Copyright (C) 2021 S0AndS0
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3 of the License.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/. ```
For further details review full length version of AGPL-3.0 License.