Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Imaging/libImaging/Quant.h
blob: 3626653aa506d6d92faf62e45b136744c0212d97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * The Python Imaging Library
 * $Id: Quant.h 2134 2004-10-06 08:55:20Z fredrik $
 *
 * image quantizer
 *
 * Written by Toby J Sargeant <tjs@longford.cs.monash.edu.au>.
 *
 * See the README file for information on usage and redistribution.
 */

#ifndef __QUANT_H__
#define __QUANT_H__

typedef union {
   struct {
      unsigned char r,g,b,a;
   } c;
   struct {
      unsigned char v[4];
   } a;
   unsigned long v;
} Pixel;

int quantize(Pixel *,
             unsigned long,
             unsigned long,
             Pixel **,
             unsigned long *,
             unsigned long **,
             int);

int quantize2(Pixel *,
             unsigned long,
             unsigned long,
             Pixel **,
             unsigned long *,
             unsigned long **,
             int);
#endif