forked from misc0110/libattopng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.c
94 lines (70 loc) · 2.27 KB
/
test.c
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include <libattopng.h>
#include <stdio.h>
#define W 250
#define H 200
#define RGBA(r, g, b, a) ((r) | ((g) << 8) | ((b) << 16) | ((a) << 24))
#define RGB(r, g, b) RGBA(r, g, b, 0xff)
#define ALPHA(c, a) ((c) | ((a) << 8))
int main(int argc, char *argv[]) {
libattopng_t *png = libattopng_new(W, H, PNG_PALETTE);
uint32_t palette[] = {
RGBA(0, 0, 0xff, 0xff),
RGBA(0, 0xff, 0, 0x80),
RGBA(0xff, 0, 0, 0xff),
RGBA(0xff, 0, 0xff, 0x80)
};
libattopng_set_palette(png, palette, 4);
int x, y;
for (y = 0; y < H; y++) {
for (x = 0; x < W; x++) {
libattopng_set_pixel(png, x, y, (x % 16) / 4);
}
}
libattopng_save(png, "test_palette.png");
libattopng_destroy(png);
// -----------------
png = libattopng_new(W, H, PNG_RGBA);
for (y = 0; y < H; y++) {
for (x = 0; x < W; x++) {
libattopng_set_pixel(png, x, y, RGBA(x & 255, y & 255, 128, (255 - ((x / 2) & 255))));
}
}
libattopng_save(png, "test_rgba.png");
libattopng_destroy(png);
// -----------------
png = libattopng_new(W, H, PNG_RGB);
for (y = 0; y < H; y++) {
for (x = 0; x < W; x++) {
libattopng_set_pixel(png, x, y, RGB(x & 255, y & 255, 128));
}
}
libattopng_save(png, "test_rgb.png");
libattopng_destroy(png);
// -----------------
png = libattopng_new(W, H, PNG_GRAYSCALE);
for (y = 0; y < H; y++) {
for (x = 0; x < W; x++) {
libattopng_set_pixel(png, x, y, (((x + y) / 2) & 255));
}
}
libattopng_save(png, "test_gray.png");
libattopng_destroy(png);
// -----------------
png = libattopng_new(W, H, PNG_GRAYSCALE_ALPHA);
for (y = 0; y < H; y++) {
for (x = 0; x < W; x++) {
libattopng_set_pixel(png, x, y, ALPHA(((x + y) / 2) & 255, 255 - ((y / 2) & 255)));
}
}
libattopng_save(png, "test_gray_alpha.png");
libattopng_destroy(png);
// -----------------
png = libattopng_new(W, H, PNG_GRAYSCALE);
libattopng_start_stream(png, 0, 0);
for (x = 0; x < W * H; x++) {
libattopng_put_pixel(png, 255 * x / (W * H));
}
libattopng_save(png, "test_gray_stream.png");
libattopng_destroy(png);
return 0;
}