1
0
mirror of https://frontier.innolan.net/github/AmigaExamples.git synced 2026-01-12 06:53:56 +00:00
Files
AmigaExamples/tools/imagecon/quant.h
2016-03-11 18:46:00 +11:00

13 lines
197 B
C

#pragma once
typedef struct {
int w, h;
unsigned char *pix;
} quant_image_t;
void
quant_quantize(quant_image_t* im, int n_colors, int dither);
quant_image_t*
quant_newImage(int w, int h);