Skip to main content

A package to do color conversions and comparisons

Project description

colortools

Python package for common color conversions and operations

PyPI - Version PyPI - Python Version


Table of Contents

Description

Python package for conversions between common color representations like RGB and HEX and color comparisons using CIE formulas.

Features

Conversion between common color represantations

  • RGB
  • HEX
  • CMYK
  • HSL
  • HSV
  • LAB
  • XYZ
  • Color Name

Color difference calculation (Delta E)

measure of the perceptual difference between two colors

  • Delta E (ΔE) CIE76 Formula
  • Delta E (ΔE) CIE94 Formula
  • Delta E (ΔE) CIEDE2000 Formula

Quickstart

Installation

To install from test PyPI with pip:

$ python -m pip install colortools-lentolen

Example usage:

Using colortools in a Python script to calculate the CIEDE200 difference between to hex colors.

from colortools import color_utils
color1 = color_utils.hex_to_rgb("#ddf4ee")
color2 = color_converter.hex_to_rgb("#88bfb1")
deltaE = color_utils.ciede2000_rgb(color1, color2)

Documentation

all color models are represented as tuples except hex codes: e.g: (255,255,255)

color conversion:

syntax example:

colortools.color_utils.hex_to_rgb(hex)

supported color models: rgb, hex, cmyk, hsl, hsv, lab, xyz, colorname

only hex codes can directly be converted to colornames. there are multiple color naming standards availabe: html (standard), html-ger, meodai, x11, color-meanings.com.

This is how you can for example use the meodai GitHub color name collection:

colortools.color_utils.hex_to_colorname("#ffffff", "meodai")

color difference:

CIE functions to calculate the Delta E difference between to colors (perceptual difference).

  • ciede2000(lab1, lab2)
  • ciede2000_rgb(rgb1, rgb2)
  • cie76(lab1, lab2)
  • cie76_rgb(rgb1, rgb2)
  • cie94(lab1, lab2)
  • cie94_rgb(rgb1, rgb2)

returns Delta E as float

License

colortools is distributed under the terms of the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

colortools_lentolen-0.0.2.tar.gz (303.7 kB view hashes)

Uploaded Source

Built Distribution

colortools_lentolen-0.0.2-py3-none-any.whl (304.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page