-
Notifications
You must be signed in to change notification settings - Fork 0
/
jpeg.c
193 lines (186 loc) · 4.72 KB
/
jpeg.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/**
* @file jpeg.c
*
* Copyright(c) 2015 大前良介(OHMAE Ryosuke)
*
* This software is released under the MIT License.
* http://opensource.org/licenses/MIT
*
* @brief JPEGファイルの読み書き処理
* @author <a href="mailto:[email protected]">大前良介(OHMAE Ryosuke)</a>
* @date 2015/02/07
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <jpeglib.h>
#include "image.h"
#include <setjmp.h>
/**
* jpeg_error_mgrの拡張。
*/
typedef struct my_error_mgr {
struct jpeg_error_mgr jerr;
jmp_buf jmpbuf;
} my_error_mgr;
/**
* 致命的エラー発生時の処理。
*/
static void error_exit(j_common_ptr cinfo) {
my_error_mgr *err = (my_error_mgr *) cinfo->err;
(*cinfo->err->output_message)(cinfo);
longjmp(err->jmpbuf, 1);
}
/**
* @brief JPEG形式のファイルを読み込む。
*
* @param[in] filename ファイル名
* @return 読み込んだ画像、読み込みに失敗した場合NULL
*/
image_t *read_jpeg_file(const char *filename) {
FILE *fp;
if ((fp = fopen(filename, "rb")) == NULL) {
perror(filename);
return NULL;
}
image_t *img = read_jpeg_stream(fp);
fclose(fp);
return img;
}
/**
* @brief JPEG形式のファイルを読み込む。
*
* @param[in] fp ファイルストリーム
* @return 読み込んだ画像、読み込みに失敗した場合NULL
*/
image_t *read_jpeg_stream(FILE *fp) {
result_t result = FAILURE;
uint32_t x, y;
struct jpeg_decompress_struct jpegd;
my_error_mgr myerr;
image_t *img = NULL;
JSAMPROW buffer = NULL;
JSAMPROW row;
int stride;
jpegd.err = jpeg_std_error(&myerr.jerr);
myerr.jerr.error_exit = error_exit;
if (setjmp(myerr.jmpbuf)) {
goto error;
}
jpeg_create_decompress(&jpegd);
jpeg_stdio_src(&jpegd, fp);
if (jpeg_read_header(&jpegd, TRUE) != JPEG_HEADER_OK) {
goto error;
}
jpeg_start_decompress(&jpegd);
if (jpegd.out_color_space != JCS_RGB) {
goto error;
}
stride = sizeof(JSAMPLE) * jpegd.output_width * jpegd.output_components;
if ((buffer = calloc(stride, 1)) == NULL) {
goto error;
}
if ((img = allocate_image(jpegd.output_width, jpegd.output_height,
COLOR_TYPE_RGB)) == NULL) {
goto error;
}
for (y = 0; y < jpegd.output_height; y++) {
jpeg_read_scanlines(&jpegd, &buffer, 1);
row = buffer;
for (x = 0; x < jpegd.output_width; x++) {
img->map[y][x].c.r = *row++;
img->map[y][x].c.g = *row++;
img->map[y][x].c.b = *row++;
img->map[y][x].c.a = 0xff;
}
}
jpeg_finish_decompress(&jpegd);
result = SUCCESS;
error:
jpeg_destroy_decompress(&jpegd);
free(buffer);
if (result != SUCCESS) {
free_image(img);
img = NULL;
}
return img;
}
/**
* @brief JPEG形式としてファイルに書き出す。
*
* @param[in] filename 書き出すファイル名
* @param[in] img 画像データ
* @return 成否
*/
result_t write_jpeg_file(const char *filename, image_t *img) {
result_t result = FAILURE;
FILE *fp;
if (img == NULL) {
return result;
}
if ((fp = fopen(filename, "wb")) == NULL) {
perror(filename);
return result;
}
result = write_jpeg_stream(fp, img);
fclose(fp);
return result;
}
/**
* @brief JPEG形式としてファイルに書き出す。
*
* @param[in] fp 書き出すファイルストリームのポインタ
* @param[in] img 画像データ
* @return 成否
*/
result_t write_jpeg_stream(FILE *fp, image_t *img) {
result_t result = FAILURE;
int x, y;
struct jpeg_compress_struct jpegc;
my_error_mgr myerr;
image_t *to_free = NULL;
JSAMPROW buffer = NULL;
JSAMPROW row;
if (img == NULL) {
return FAILURE;
}
if ((buffer = malloc(sizeof(JSAMPLE) * 3 * img->width)) == NULL) {
return FAILURE;
}
if (img->color_type != COLOR_TYPE_RGB) {
// 画像形式がRGBでない場合はRGBに変換して出力
to_free = clone_image(img);
img = image_to_rgb(to_free);
}
jpegc.err = jpeg_std_error(&myerr.jerr);
myerr.jerr.error_exit = error_exit;
if (setjmp(myerr.jmpbuf)) {
goto error;
}
jpeg_create_compress(&jpegc);
jpeg_stdio_dest(&jpegc, fp);
jpegc.image_width = img->width;
jpegc.image_height = img->height;
jpegc.input_components = 3;
jpegc.in_color_space = JCS_RGB;
jpeg_set_defaults(&jpegc);
jpeg_set_quality(&jpegc, 75, TRUE);
jpeg_start_compress(&jpegc, TRUE);
for (y = 0; y < img->height; y++) {
row = buffer;
for (x = 0; x < img->width; x++) {
*row++ = img->map[y][x].c.r;
*row++ = img->map[y][x].c.g;
*row++ = img->map[y][x].c.b;
}
jpeg_write_scanlines(&jpegc, &buffer, 1);
}
jpeg_finish_compress(&jpegc);
result = SUCCESS;
error:
jpeg_destroy_compress(&jpegc);
free(buffer);
free_image(to_free);
return result;
}