/* Copyright 1999-2007 ImageMagick Studio LLC, a non-profit organization dedicated to making software imaging solutions freely available. You may not use this file except in compliance with the License. obtain a copy of the License at http://www.imagemagick.org/script/license.php Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. MagickCore image color methods. */ #ifndef _MAGICKCORE_COLOR_PRIVATE_H #define _MAGICKCORE_COLOR_PRIVATE_H #if defined(__cplusplus) || defined(c_plusplus) extern "C" { #endif #include #include #include static inline MagickBooleanType IsColorEqual(const PixelPacket *p, const PixelPacket *q) { if (p->red != q->red) return(MagickFalse); if (p->green != q->green) return(MagickFalse); if (p->blue != q->blue) return(MagickFalse); if (p->opacity != q->opacity) return(MagickFalse); return(MagickTrue); } static inline IndexPacket ConstrainColormapIndex(Image *image, const unsigned long index) { if (index >= image->colors) { (void) ThrowMagickException(&image->exception,GetMagickModule(), CorruptImageError,"InvalidColormapIndex","`%s'",image->filename); return((IndexPacket) 0); } return((IndexPacket) index); } static inline MagickBooleanType IsGray(const PixelPacket *pixel) { if (pixel->red != pixel->green) return(MagickFalse); if (pixel->green != pixel->blue) return(MagickFalse); return(MagickTrue); } static inline MagickBooleanType IsMagickColorEqual(const MagickPixelPacket *p, const MagickPixelPacket *q) { if ((p->matte != MagickFalse) && (q->matte == MagickFalse) && (p->opacity != OpaqueOpacity)) return(MagickFalse); if ((q->matte != MagickFalse) && (p->matte == MagickFalse) && (q->opacity != OpaqueOpacity)) return(MagickFalse); if ((p->matte != MagickFalse) && (q->matte != MagickFalse)) { if (p->opacity != q->opacity) return(MagickFalse); if (p->opacity == TransparentOpacity) return(MagickTrue); } if (p->red != q->red) return(MagickFalse); if (p->green != q->green) return(MagickFalse); if (p->blue != q->blue) return(MagickFalse); if ((p->colorspace == CMYKColorspace) && (p->index != q->index)) return(MagickFalse); return(MagickTrue); } static inline MagickBooleanType IsMagickGray(const MagickPixelPacket *pixel) { if (pixel->colorspace != RGBColorspace) return(MagickFalse); if (pixel->red != pixel->green) return(MagickFalse); if (pixel->green != pixel->blue) return(MagickFalse); return(MagickTrue); } static inline MagickRealType MagickPixelIntensity( const MagickPixelPacket *pixel) { MagickRealType intensity; intensity=0.299*pixel->red+0.587*pixel->green+0.114*pixel->blue; return(intensity); } static inline Quantum MagickPixelIntensityToQuantum( const MagickPixelPacket *pixel) { #if !defined(UseHDRI) return((Quantum) (0.299*pixel->red+0.587*pixel->green+0.114*pixel->blue+0.5)); #else return((Quantum) (0.299*pixel->red+0.587*pixel->green+0.114*pixel->blue)); #endif } static inline MagickRealType MagickPixelLuminance( const MagickPixelPacket *pixel) { MagickRealType luminance; luminance=0.21267*pixel->red+0.71516*pixel->green+0.07217*pixel->blue; return(luminance); } static inline MagickRealType PixelIntensity(const PixelPacket *pixel) { MagickRealType intensity; intensity=(MagickRealType) (0.299*pixel->red+0.587*pixel->green+0.114* pixel->blue); return(intensity); } static inline Quantum PixelIntensityToQuantum(const PixelPacket *pixel) { #if !defined(UseHDRI) return((Quantum) (0.299*pixel->red+0.587*pixel->green+0.114*pixel->blue+0.5)); #else return((Quantum) (0.299*pixel->red+0.587*pixel->green+0.114*pixel->blue)); #endif } #if defined(__cplusplus) || defined(c_plusplus) } #endif #endif