Sha256: 20d5e02a6377718f7ebdec3a9d83196f56f5d24da02cb88eabb6fb575fd6c109

Contents?: true

Size: 864 Bytes

Versions: 4

Compression:

Stored size: 864 Bytes

Contents

#ifndef OILY_PNG_COLOR_H
#define OILY_PNG_COLOR_H

#define R_BYTE(pixel)  ((BYTE) (((pixel) & (PIXEL) 0xff000000) >> 24))
#define G_BYTE(pixel)  ((BYTE) (((pixel) & (PIXEL) 0x00ff0000) >> 16))
#define B_BYTE(pixel)  ((BYTE) (((pixel) & (PIXEL) 0x0000ff00) >> 8))
#define A_BYTE(pixel)  ((BYTE) (((pixel) & (PIXEL) 0x000000ff)))

#define BUILD_PIXEL(r, g, b, a)  (((PIXEL) (r) << 24) + ((PIXEL) (g) << 16) + ((PIXEL) (b) << 8) + (PIXEL) (a))
#define INT8_MULTIPLY(a, b)      (((((a) * (b) + 0x80) >> 8) + ((a) * (b) + 0x80)) >> 8)

/* 
  Ruby replacement method for color composition using alpha transparency.
  
  This method should replace ChunkyPNG::Color.compose_quick
*/
VALUE oily_png_color_compose_quick(VALUE self, VALUE fg_color, VALUE bg_color);

/* Color composition using alpha transparency. */
PIXEL oily_png_compose_color(PIXEL fg, PIXEL bg);

#endif

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
oily_png-1.0.1 ext/oily_png/color.h
oily_png-1.0.0 ext/oily_png/color.h
oily_png-1.0.0.rc2 ext/oily_png/color.h
oily_png-1.0.0.rc1 ext/oily_png/color.h