blob: 5e467935a80c2c1f01ee76da2bb56d1637b3c14b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include <stdint.h>
#include <stdio.h>
void save_ppm(FILE *f, uint32_t *buffer, uint32_t width, uint32_t height, uint32_t pitch)
{
fprintf(f, "P6\n%d %d\n255\n", width, height);
for(uint32_t y = 0; y < height; y++)
{
uint32_t *line = buffer;
for (uint32_t x = 0; x < width; x++, line++)
{
uint8_t buf[3] = {
*line >> 16, //red
*line >> 8, //green
*line //blue
};
fwrite(buf, 1, sizeof(buf), f);
}
buffer = buffer + pitch / sizeof(uint32_t);
}
}
|