blob: fa43408772929bd07dc21954c8704e60fb5c68fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* Quantization for Inkscape
*
* Authors:
* Stéphane Gimenez <dev@gim.name>
*
* Copyright (C) 2006 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifndef __QUANTIZE_H__
#define __QUANTIZE_H__
#include "imagemap.h"
/**
* Quantize an RGB image to a reduced number of colors.
*/
IndexedMap *rgbMapQuantize(RgbMap *rgbmap, int nrColors);
#endif /* __QUANTIZE_H__ */
|