-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpng2bin.c
77 lines (60 loc) · 2.04 KB
/
png2bin.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
/*
imgify - Convert any file to PNG and back.
png2bin.c
Copyright (C) 2015 - Jardel Weyrich <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define PROGRAM "png2bin"
#include <stdbool.h>
#include <stdio.h>
#include <errno.h>
#include <stddef.h>
#include <math.h>
#include "imgify.h"
#include "common.h"
#include "common_options.h"
#include "version.h"
static void do_work(const options_t *options, void *data, size_t filesize) {
uint8_t *buffer;
size_t buffer_size;
uint32_t width;
uint32_t height;
uint8_t channels;
uint32_t padding;
const bool ok = png_load(options->input, &buffer, &buffer_size, &width, &height, &channels, &padding, options->pad_byte);
if (ok) {
printf("Input file => %s\n size => %zu bytes\n image => %ux%u px, %d bpp, %upx padding\n",
options->input, filesize, width, height, channels * 8, padding / channels);
FILE *outf = fopen(options->output, "wb");
if (outf == NULL) {
free(buffer);
perror("fopen");
exit(EXIT_FAILURE);
}
size_t block_size = 8192;
size_t remaining = buffer_size;
size_t total_written = 0;
while (remaining > 0) {
if (remaining < block_size)
block_size = remaining;
size_t written = fwrite(buffer + total_written, 1, block_size, outf);
if (written == 0)
break;
remaining -= written;
total_written += written;
}
fclose(outf);
free(buffer);
printf("Output file => %s\n size => %zu bytes\n", options->output, fsize(options->output));
}
}
#include "common_main.h"