pike.git / src / modules / Image / colors.c

version» Context lines:

pike.git/src/modules/Image/colors.c:1:   /*   **! module Image   **! note - **! $Id: colors.c,v 1.53 2001/07/18 18:49:58 nilsson Exp $ + **! $Id: colors.c,v 1.54 2001/07/19 21:09:37 nilsson Exp $   **! submodule Color   **!   **! This module keeps names and easy handling   **! for easy color support. It gives you an easy   **! way to get colors from names.   **!   **! A color is here an object, containing color   **! information and methods for conversion, see below.   **!   **! <ref>Image.Color</ref> can be called to make a color object.
pike.git/src/modules/Image/colors.c:172:   **! class Color   **! This is the color object. It has six readable variables,   **! <tt>r</tt>, <tt>g</tt>, <tt>b</tt>, for the <i>red</i>,   **! <i>green</i> and <i>blue</i> values,   **! and <tt>h</tt>, <tt>s</tt>, <tt>v</tt>, for   **! the <i>hue</i>, <i>saturation</i> anv <i>value</i> values.   */      #include "global.h"    - RCSID("$Id: colors.c,v 1.53 2001/07/18 18:49:58 nilsson Exp $"); + RCSID("$Id: colors.c,v 1.54 2001/07/19 21:09:37 nilsson Exp $");      #include "image_machine.h"      #include <math.h>      #include "stralloc.h"   #include "pike_macros.h"   #include "object.h"   #include "constants.h"   #include "interpret.h"
pike.git/src/modules/Image/colors.c:1447:    return;    }    image_make_rgb_color(args);   }         /*   **! module Image   **! submodule Color   **! - **! method object guess(string) + **! method object guess(string color)   **! This is equivalent to   **! <tt><ref>Image.Color</ref>(lower_case(str)-" ")</tt>,   **! and tries the color with a prepending '#' if no   **! corresponding color is found.   **!   **! returns a color object or zero_type   */      /*   **! method object rgb(int red, int green, int blue)