mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-16 14:46:58 +03:00
18 lines
235 B
C
18 lines
235 B
C
#ifndef __QUANT_PNGQUANT_H__
|
|
#define __QUANT_PNGQUANT_H__
|
|
|
|
#include "QuantTypes.h"
|
|
|
|
int
|
|
quantize_pngquant(
|
|
Pixel *,
|
|
unsigned int,
|
|
unsigned int,
|
|
uint32_t,
|
|
Pixel **,
|
|
uint32_t *,
|
|
uint32_t **,
|
|
int);
|
|
|
|
#endif
|