2003-07-15 04:15:43 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
2001-01-02 02:35:09 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2001-01-02 02:35:09 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2003-07-15 04:15:43 +08:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-01-02 02:35:09 +08:00
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2001-01-02 02:35:09 +08:00
|
|
|
*/
|
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
#if !defined (__GIMP_COLOR_H_INSIDE__) && !defined (GIMP_COLOR_COMPILATION)
|
|
|
|
#error "Only <libgimpcolor/gimpcolor.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2001-01-24 02:49:44 +08:00
|
|
|
#ifndef __GIMP_RGB_H__
|
|
|
|
#define __GIMP_RGB_H__
|
2001-01-02 02:35:09 +08:00
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_BEGIN_DECLS
|
2001-01-02 02:35:09 +08:00
|
|
|
|
|
|
|
/* For information look into the C source or the html documentation */
|
|
|
|
|
|
|
|
|
2006-04-02 17:39:46 +08:00
|
|
|
/*
|
|
|
|
* GIMP_TYPE_RGB
|
|
|
|
*/
|
|
|
|
|
2006-04-28 00:01:16 +08:00
|
|
|
#define GIMP_TYPE_RGB (gimp_rgb_get_type ())
|
2004-07-27 02:14:48 +08:00
|
|
|
|
2006-04-28 00:01:16 +08:00
|
|
|
GType gimp_rgb_get_type (void) G_GNUC_CONST;
|
2004-07-27 02:14:48 +08:00
|
|
|
|
2005-01-22 08:43:31 +08:00
|
|
|
|
2001-01-02 02:35:09 +08:00
|
|
|
/* RGB and RGBA color types and operations taken from LibGCK */
|
|
|
|
|
2019-07-24 07:18:30 +08:00
|
|
|
/**
|
|
|
|
* GimpRGBCompositeMode:
|
|
|
|
* @GIMP_RGB_COMPOSITE_NONE: don't do compositing
|
|
|
|
* @GIMP_RGB_COMPOSITE_NORMAL: composite on top
|
|
|
|
* @GIMP_RGB_COMPOSITE_BEHIND: composite behind
|
|
|
|
**/
|
2001-01-15 04:25:46 +08:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GIMP_RGB_COMPOSITE_NONE = 0,
|
|
|
|
GIMP_RGB_COMPOSITE_NORMAL,
|
|
|
|
GIMP_RGB_COMPOSITE_BEHIND
|
|
|
|
} GimpRGBCompositeMode;
|
|
|
|
|
2001-01-02 02:35:09 +08:00
|
|
|
|
2006-04-27 21:07:15 +08:00
|
|
|
void gimp_rgb_set (GimpRGB *rgb,
|
|
|
|
gdouble red,
|
|
|
|
gdouble green,
|
|
|
|
gdouble blue);
|
|
|
|
void gimp_rgb_set_alpha (GimpRGB *rgb,
|
|
|
|
gdouble alpha);
|
|
|
|
|
|
|
|
void gimp_rgb_set_uchar (GimpRGB *rgb,
|
|
|
|
guchar red,
|
|
|
|
guchar green,
|
|
|
|
guchar blue);
|
|
|
|
void gimp_rgb_get_uchar (const GimpRGB *rgb,
|
|
|
|
guchar *red,
|
|
|
|
guchar *green,
|
|
|
|
guchar *blue);
|
|
|
|
|
|
|
|
void gimp_rgb_add (GimpRGB *rgb1,
|
|
|
|
const GimpRGB *rgb2);
|
|
|
|
void gimp_rgb_multiply (GimpRGB *rgb1,
|
|
|
|
gdouble factor);
|
|
|
|
|
|
|
|
gdouble gimp_rgb_max (const GimpRGB *rgb);
|
|
|
|
gdouble gimp_rgb_min (const GimpRGB *rgb);
|
|
|
|
void gimp_rgb_clamp (GimpRGB *rgb);
|
|
|
|
|
2005-08-03 08:36:41 +08:00
|
|
|
gdouble gimp_rgb_luminance (const GimpRGB *rgb);
|
|
|
|
guchar gimp_rgb_luminance_uchar (const GimpRGB *rgb);
|
|
|
|
|
2006-04-27 21:07:15 +08:00
|
|
|
void gimp_rgb_composite (GimpRGB *color1,
|
|
|
|
const GimpRGB *color2,
|
|
|
|
GimpRGBCompositeMode mode);
|
2004-07-22 20:42:57 +08:00
|
|
|
|
2006-04-27 21:07:15 +08:00
|
|
|
void gimp_rgba_set (GimpRGB *rgba,
|
|
|
|
gdouble red,
|
|
|
|
gdouble green,
|
|
|
|
gdouble blue,
|
|
|
|
gdouble alpha);
|
|
|
|
|
|
|
|
void gimp_rgba_set_uchar (GimpRGB *rgba,
|
|
|
|
guchar red,
|
|
|
|
guchar green,
|
|
|
|
guchar blue,
|
|
|
|
guchar alpha);
|
|
|
|
void gimp_rgba_get_uchar (const GimpRGB *rgba,
|
|
|
|
guchar *red,
|
|
|
|
guchar *green,
|
|
|
|
guchar *blue,
|
|
|
|
guchar *alpha);
|
|
|
|
|
|
|
|
void gimp_rgba_add (GimpRGB *rgba1,
|
|
|
|
const GimpRGB *rgba2);
|
|
|
|
void gimp_rgba_multiply (GimpRGB *rgba,
|
|
|
|
gdouble factor);
|
|
|
|
|
|
|
|
gdouble gimp_rgba_distance (const GimpRGB *rgba1,
|
|
|
|
const GimpRGB *rgba2);
|
2001-01-12 07:36:59 +08:00
|
|
|
|
2001-01-15 04:25:46 +08:00
|
|
|
|
2004-07-26 23:20:18 +08:00
|
|
|
|
2015-02-08 01:20:36 +08:00
|
|
|
/* Map D50-adapted sRGB to luminance */
|
2001-01-24 02:49:44 +08:00
|
|
|
|
2005-08-03 08:36:41 +08:00
|
|
|
/*
|
|
|
|
* The weights to compute true CIE luminance from linear red, green
|
2015-02-08 01:20:36 +08:00
|
|
|
* and blue as defined by the sRGB color space specs in an ICC profile
|
|
|
|
* color managed application. The weights below have been chromatically
|
|
|
|
* adapted from D65 (as specified by the sRGB color space specs)
|
|
|
|
* to D50 (as specified by D50 illuminant values in the ICC V4 specs).
|
2005-08-03 08:36:41 +08:00
|
|
|
*/
|
|
|
|
|
2015-02-08 01:20:36 +08:00
|
|
|
#define GIMP_RGB_LUMINANCE_RED (0.22248840)
|
|
|
|
#define GIMP_RGB_LUMINANCE_GREEN (0.71690369)
|
|
|
|
#define GIMP_RGB_LUMINANCE_BLUE (0.06060791)
|
2005-08-03 08:36:41 +08:00
|
|
|
|
|
|
|
#define GIMP_RGB_LUMINANCE(r,g,b) ((r) * GIMP_RGB_LUMINANCE_RED + \
|
2006-04-12 18:53:28 +08:00
|
|
|
(g) * GIMP_RGB_LUMINANCE_GREEN + \
|
|
|
|
(b) * GIMP_RGB_LUMINANCE_BLUE)
|
2005-08-03 08:36:41 +08:00
|
|
|
|
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_END_DECLS
|
2001-01-02 02:35:09 +08:00
|
|
|
|
2001-01-24 02:49:44 +08:00
|
|
|
#endif /* __GIMP_RGB_H__ */
|