blob: 1c8d6b4bd980e3dd6d63c3a6bc404a43b5a752b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
*** image.c.orig Tue Sep 25 09:25:40 2001
--- image.c Tue Sep 25 09:26:26 2001
***************
*** 205,211 ****
cinfo.image_width = output_width;
cinfo.image_height = output_height;
cinfo.input_components = out_color_components;
! cinfo.in_color_space = JCS_RGB;
/* compression parameters */
jpeg_set_defaults(&cinfo);
--- 205,211 ----
cinfo.image_width = output_width;
cinfo.image_height = output_height;
cinfo.input_components = out_color_components;
! cinfo.in_color_space = dinfo.out_color_space;
/* compression parameters */
jpeg_set_defaults(&cinfo);
|