pike.git
/
src
/
modules
/
Image
/
colors.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/Image/colors.c:1:
/* **! module Image **! note
-
**! $Id: colors.c,v 1.
46
2001/03/
04
19
:
27
:
19
mirar
Exp $
+
**! $Id: colors.c,v 1.
47
2001/03/
17
20
:
42
:
46
grubba
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.
46
2001/03/
04
19
:
27
:
19
mirar
Exp $");
+
RCSID("$Id: colors.c,v 1.
47
2001/03/
17
20
:
42
:
46
grubba
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:1367:
stack_dup(); push_text("gr%*[ea]y%f\n"); f_sscanf(2); if (sp[-1].type==T_ARRAY && sp[-1].u.array->size==1) { double f; f = sp[-1].u.array->item[0].u.float_number; pop_stack(); pop_stack();
-
push_int( (int)(255*f/100) );
+
push_int(
DO_NOT_WARN
(
(
int)(255*f/100)
)
);
/* grey100 is white, grey0 is black */ stack_dup(); stack_dup(); image_make_rgb_color(3); return; } pop_stack(); } }