prizm: A haskell library for computing with colors

[ bsd3, graphics, library ] [ Propose Tags ]
This version is deprecated.

Prizm can convert between many different color representations; notably the sRGB and CIE representations. Future versions will have implementations for mutating colors as well.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4, 0.2.0.0, 0.2.1.0, 0.3.0.0, 0.3.1.0, 0.3.1.1, 0.3.1.2, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.1.0, 2.0.0, 2.0.1, 3.0.0 (info)
Change log CHANGES
Dependencies base (>=4.5 && <5), text (>=0.11.2.3) [details]
License BSD-3-Clause
Copyright (c) 2013 Parnell Springmeyer
Author Parnell Springmeyer
Maintainer ixmatus@gmail.com
Category Graphics
Home page https://github.com/ixmatus/prizm
Bug tracker https://github.com/ixmatus/prizm/issues
Source repo head: git clone https://github.com/ixmatus/prizm
Uploaded by ParnellSpringmeyer at 2013-06-16T01:12:36Z
Distributions NixOS:3.0.0
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 11155 total (52 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for prizm-0.3.0.0

[back to package description]

Welcome!

Prizm is a haskell library for dealing with colors. Please contribute!

My inspiration for writing this was Sass and Bourbon, both implement interesting color handling functions for use in stylesheets and I wanted the same thing for use in Clay (also for Bentonite).

Colour Module

There is some overlap with the Haskell Colour Module that already exists; however, this library is filling a couple of needs the other doesn't satisfy.

TODO

This module is getting kind of messy, I want to refactor how everything is organized. I also need to fix the types.

Supported Algorithms

  • sRGB <-> CIE XYZ
  • CIE XYZ <-> CIE L*a*b*
  • CIE L*\a*b <-> CIE L*C*h

Roadmap

0.3.0.0

I really want to clean up the API - right now stuff is just "everywhere" and the different color spaces should have their own modules with their own convenience conversions to/from RGB to minimize the amount of function chaining required.

I also want to figure out a way of testing the lighten/darken, interpolation, and hue transformation functions.

0.2.1.0

Blending is now switched over to using CIE L*Ch color space for more accurate blending.

0.2.0.0

Functions for

  • color blending
  • tint / shade
  • darken / lighten

0.1.0.4

Conversion functions for sRGB to HEX.

0.1.0.3

All color types should have instances for Functor so fmap can work over their values. All color types should have instances for Applicative to make computations cleaner.

0.1.0.2

Make sure all of the conversion formulas convert losslessly at an acceptable level of precision.

General Color Formulas, Data, and Algorithms CIE Conversion Mathematics Conversion Algorithm Sources Good list of useful color manipulation