File: README

package info (click to toggle)
libgraphics-colorobject-perl 0.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 260 kB
  • ctags: 231
  • sloc: perl: 1,567; sh: 29; makefile: 11
file content (42 lines) | stat: -rw-r--r-- 851 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Graphics/ColorObject version 0.5.0
============================

QUICK START

Convert from one color space to another, from example from RGB 
to HSV (Hue-Saturation-Value):

use Graphics::ColorObject;
($h, $s, $v) = @{ Graphics::ColorObject->new_RGB([$r, $g, $b])->as_HSV() };

You can convert between any of these color spaces: XYZ, xyY, Lab,
LCHab, RGB, HSL, HSV, CMY, CMYK, YPbPr, YCbCr, YUV, YIQ, PhotoYCC.

For more detailed info, type:

   perldoc ColorObject.pm


INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install


DEPENDENCIES

Graphics::ColorNames


COPYRIGHT AND LICENCE

Copyright 2003-2005 by Alex Izvorski 
(Portions Copyright 2001-2003 by Alfred Reibenschuh)

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.