]> git.saurik.com Git - wxWidgets.git/blame - src/common/imagjpeg.cpp
Added ComputeHistogram
[wxWidgets.git] / src / common / imagjpeg.cpp
CommitLineData
e9c4b1a2
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: imagjpeg.cpp
3// Purpose: wxImage JPEG handler
b59ff3c9 4// Author: Vaclav Slavik
e9c4b1a2 5// RCS-ID: $Id$
b59ff3c9 6// Copyright: (c) Vaclav Slavik
e9c4b1a2
JS
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
c972e125
VZ
10/*
11 We don't put pragma implement in this file because it is already present in
12 src/common/image.cpp
c972e125 13*/
e9c4b1a2
JS
14
15// For compilers that support precompilation, includes "wx.h".
16#include "wx/wxprec.h"
17
18#ifdef __BORLANDC__
19#pragma hdrstop
20#endif
21
ce4169a4
RR
22#include "wx/defs.h"
23
9ab6ee85 24#if wxUSE_LIBJPEG
ce4169a4 25
e9c4b1a2
JS
26#include "wx/image.h"
27#include "wx/bitmap.h"
28#include "wx/debug.h"
29#include "wx/log.h"
30#include "wx/app.h"
995612e2
VZ
31extern "C"
32{
33 #include "jpeglib.h"
e9c4b1a2 34}
e9c4b1a2
JS
35#include "wx/filefn.h"
36#include "wx/wfstream.h"
37#include "wx/intl.h"
38#include "wx/module.h"
39
40// For memcpy
41#include <string.h>
b59ff3c9
VS
42// For JPEG library error handling
43#include <setjmp.h>
e9c4b1a2
JS
44
45#ifdef __SALFORDC__
46#ifdef FAR
47#undef FAR
48#endif
49#endif
50
51#ifdef __WXMSW__
52#include <windows.h>
53#endif
54
55//-----------------------------------------------------------------------------
56// wxJPEGHandler
57//-----------------------------------------------------------------------------
58
e9c4b1a2 59IMPLEMENT_DYNAMIC_CLASS(wxJPEGHandler,wxImageHandler)
e9c4b1a2 60
9ab6ee85
GRG
61#if wxUSE_STREAMS
62
e9c4b1a2
JS
63//------------- JPEG Data Source Manager
64
65typedef struct {
66 struct jpeg_source_mgr pub; /* public fields */
995612e2 67
e9c4b1a2
JS
68 JOCTET* buffer; /* start of buffer */
69} my_source_mgr;
70
71typedef my_source_mgr * my_src_ptr;
72
74e3313b 73METHODDEF(void) my_init_source ( j_decompress_ptr WXUNUSED(cinfo) )
e9c4b1a2
JS
74{
75}
76
74e3313b 77METHODDEF(boolean) my_fill_input_buffer ( j_decompress_ptr WXUNUSED(cinfo) )
e9c4b1a2
JS
78{
79 return TRUE;
80}
81
82METHODDEF(void) my_skip_input_data ( j_decompress_ptr cinfo, long num_bytes )
83{
84 my_src_ptr src = (my_src_ptr) cinfo->src;
995612e2 85
e9c4b1a2
JS
86 src->pub.next_input_byte += (size_t) num_bytes;
87 src->pub.bytes_in_buffer -= (size_t) num_bytes;
88}
89
90METHODDEF(void) my_term_source ( j_decompress_ptr cinfo )
91{
92 my_src_ptr src = (my_src_ptr) cinfo->src;
995612e2 93
e9c4b1a2
JS
94 free (src->buffer);
95}
96
97void jpeg_wxio_src( j_decompress_ptr cinfo, wxInputStream& infile )
98{
99 my_src_ptr src;
995612e2
VZ
100
101 if (cinfo->src == NULL) { /* first time for this JPEG object? */
e9c4b1a2
JS
102 cinfo->src = (struct jpeg_source_mgr *)
103 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
104 sizeof(my_source_mgr));
105 src = (my_src_ptr) cinfo->src;
106 }
107 src = (my_src_ptr) cinfo->src;
cd25b18c
RR
108 src->pub.bytes_in_buffer = infile.GetSize(); /* forces fill_input_buffer on first read */
109 src->buffer = (JOCTET *) malloc (infile.GetSize());
e9c4b1a2 110 src->pub.next_input_byte = src->buffer; /* until buffer loaded */
cd25b18c 111 infile.Read(src->buffer, infile.GetSize());
995612e2 112
e9c4b1a2
JS
113 src->pub.init_source = my_init_source;
114 src->pub.fill_input_buffer = my_fill_input_buffer;
115 src->pub.skip_input_data = my_skip_input_data;
116 src->pub.resync_to_restart = jpeg_resync_to_restart; /* use default method */
117 src->pub.term_source = my_term_source;
118}
119
120
b59ff3c9
VS
121// JPEG error manager:
122
123struct my_error_mgr {
995612e2 124 struct jpeg_error_mgr pub; /* "public" fields */
b59ff3c9 125
995612e2 126 jmp_buf setjmp_buffer; /* for return to caller */
b59ff3c9
VS
127};
128
129typedef struct my_error_mgr * my_error_ptr;
130
131/*
132 * Here's the routine that will replace the standard error_exit method:
133 */
134
135METHODDEF(void)
136my_error_exit (j_common_ptr cinfo)
137{
138 /* cinfo->err really points to a my_error_mgr struct, so coerce pointer */
139 my_error_ptr myerr = (my_error_ptr) cinfo->err;
140
141 /* Always display the message. */
142 /* We could postpone this until after returning, if we chose. */
deb2fec0 143 if (cinfo->err->output_message) (*cinfo->err->output_message) (cinfo);
b59ff3c9
VS
144
145 /* Return control to the setjmp point */
146 longjmp(myerr->setjmp_buffer, 1);
147}
148
149
e9c4b1a2 150
700ec454 151bool wxJPEGHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose, int WXUNUSED(index) )
e9c4b1a2
JS
152{
153 struct jpeg_decompress_struct cinfo;
b59ff3c9 154 struct my_error_mgr jerr;
e9c4b1a2
JS
155 JSAMPARRAY tempbuf;
156 unsigned char *ptr;
157 unsigned stride;
995612e2 158
e9c4b1a2 159 image->Destroy();
b59ff3c9
VS
160 cinfo.err = jpeg_std_error( &jerr.pub );
161 jerr.pub.error_exit = my_error_exit;
162
deb2fec0
SB
163 if (!verbose) cinfo.err->output_message=NULL;
164
b59ff3c9
VS
165 /* Establish the setjmp return context for my_error_exit to use. */
166 if (setjmp(jerr.setjmp_buffer)) {
167 /* If we get here, the JPEG code has signaled an error.
168 * We need to clean up the JPEG object, close the input file, and return.
169 */
58c837a4
RR
170 if (verbose)
171 wxLogError(_("JPEG: Couldn't load - file is probably corrupted."));
b59ff3c9
VS
172 jpeg_destroy_decompress(&cinfo);
173 if (image->Ok()) image->Destroy();
174 return FALSE;
175 }
176
e9c4b1a2
JS
177 jpeg_create_decompress( &cinfo );
178 jpeg_wxio_src( &cinfo, stream );
179 jpeg_read_header( &cinfo, TRUE );
180 cinfo.out_color_space = JCS_RGB;
181 jpeg_start_decompress( &cinfo );
995612e2 182
e9c4b1a2
JS
183 image->Create( cinfo.image_width, cinfo.image_height );
184 if (!image->Ok()) {
185 jpeg_finish_decompress( &cinfo );
186 jpeg_destroy_decompress( &cinfo );
187 return FALSE;
188 }
189 image->SetMask( FALSE );
190 ptr = image->GetData();
191 stride = cinfo.output_width * 3;
192 tempbuf = (*cinfo.mem->alloc_sarray)
193 ((j_common_ptr) &cinfo, JPOOL_IMAGE, stride, 1 );
995612e2 194
e9c4b1a2
JS
195 while ( cinfo.output_scanline < cinfo.output_height ) {
196 jpeg_read_scanlines( &cinfo, tempbuf, 1 );
197 memcpy( ptr, tempbuf[0], stride );
198 ptr += stride;
199 }
200 jpeg_finish_decompress( &cinfo );
201 jpeg_destroy_decompress( &cinfo );
202 return TRUE;
203}
204
205
206
207
208
209typedef struct {
210 struct jpeg_destination_mgr pub;
995612e2 211
e9c4b1a2
JS
212 wxOutputStream *stream;
213 JOCTET * buffer;
214} my_destination_mgr;
215
216typedef my_destination_mgr * my_dest_ptr;
217
995612e2 218#define OUTPUT_BUF_SIZE 4096 /* choose an efficiently fwrite'able size */
e9c4b1a2
JS
219
220METHODDEF(void) init_destination (j_compress_ptr cinfo)
221{
222 my_dest_ptr dest = (my_dest_ptr) cinfo->dest;
995612e2 223
e9c4b1a2
JS
224 /* Allocate the output buffer --- it will be released when done with image */
225 dest->buffer = (JOCTET *)
226 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
227 OUTPUT_BUF_SIZE * sizeof(JOCTET));
228 dest->pub.next_output_byte = dest->buffer;
229 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
230}
231
232METHODDEF(boolean) empty_output_buffer (j_compress_ptr cinfo)
233{
234 my_dest_ptr dest = (my_dest_ptr) cinfo->dest;
995612e2 235
e9c4b1a2
JS
236 dest->stream->Write(dest->buffer, OUTPUT_BUF_SIZE);
237 dest->pub.next_output_byte = dest->buffer;
238 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
239 return TRUE;
240}
241
242METHODDEF(void) term_destination (j_compress_ptr cinfo)
243{
244 my_dest_ptr dest = (my_dest_ptr) cinfo->dest;
245 size_t datacount = OUTPUT_BUF_SIZE - dest->pub.free_in_buffer;
246 /* Write any data remaining in the buffer */
247 if (datacount > 0)
248 dest->stream->Write(dest->buffer, datacount);
249}
250
251GLOBAL(void) jpeg_wxio_dest (j_compress_ptr cinfo, wxOutputStream& outfile)
252{
253 my_dest_ptr dest;
995612e2
VZ
254
255 if (cinfo->dest == NULL) { /* first time for this JPEG object? */
e9c4b1a2
JS
256 cinfo->dest = (struct jpeg_destination_mgr *)
257 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
258 sizeof(my_destination_mgr));
259 }
995612e2 260
e9c4b1a2
JS
261 dest = (my_dest_ptr) cinfo->dest;
262 dest->pub.init_destination = init_destination;
263 dest->pub.empty_output_buffer = empty_output_buffer;
264 dest->pub.term_destination = term_destination;
265 dest->stream = &outfile;
266}
267
deb2fec0 268bool wxJPEGHandler::SaveFile( wxImage *image, wxOutputStream& stream, bool verbose )
e9c4b1a2
JS
269{
270 struct jpeg_compress_struct cinfo;
b59ff3c9 271 struct my_error_mgr jerr;
995612e2 272 JSAMPROW row_pointer[1]; /* pointer to JSAMPLE row[s] */
e9c4b1a2 273 JSAMPLE *image_buffer;
995612e2
VZ
274 int stride; /* physical row width in image buffer */
275
b59ff3c9
VS
276 cinfo.err = jpeg_std_error(&jerr.pub);
277 jerr.pub.error_exit = my_error_exit;
278
deb2fec0
SB
279 if (!verbose) cinfo.err->output_message=NULL;
280
b59ff3c9 281 /* Establish the setjmp return context for my_error_exit to use. */
58c837a4
RR
282 if (setjmp(jerr.setjmp_buffer))
283 {
284 /* If we get here, the JPEG code has signaled an error.
285 * We need to clean up the JPEG object, close the input file, and return.
286 */
287 if (verbose)
288 wxLogError(_("JPEG: Couldn't save image."));
289 jpeg_destroy_compress(&cinfo);
290 return FALSE;
b59ff3c9
VS
291 }
292
e9c4b1a2
JS
293 jpeg_create_compress(&cinfo);
294 jpeg_wxio_dest(&cinfo, stream);
995612e2 295
e9c4b1a2
JS
296 cinfo.image_width = image->GetWidth();
297 cinfo.image_height = image->GetHeight();
298 cinfo.input_components = 3;
299 cinfo.in_color_space = JCS_RGB;
300 jpeg_set_defaults(&cinfo);
301 jpeg_start_compress(&cinfo, TRUE);
995612e2
VZ
302
303 stride = cinfo.image_width * 3; /* JSAMPLEs per row in image_buffer */
e9c4b1a2
JS
304 image_buffer = image->GetData();
305 while (cinfo.next_scanline < cinfo.image_height) {
306 row_pointer[0] = &image_buffer[cinfo.next_scanline * stride];
307 jpeg_write_scanlines( &cinfo, row_pointer, 1 );
308 }
309 jpeg_finish_compress(&cinfo);
310 jpeg_destroy_compress(&cinfo);
995612e2 311
e9c4b1a2
JS
312 return TRUE;
313}
e9c4b1a2 314
0828c087 315
995612e2 316bool wxJPEGHandler::DoCanRead( wxInputStream& stream )
0828c087
VS
317{
318 unsigned char hdr[2];
995612e2 319
0828c087
VS
320 stream.Read(&hdr, 2);
321 stream.SeekI(-2, wxFromCurrent);
322 return (hdr[0] == 0xFF && hdr[1] == 0xD8);
323}
324
9ab6ee85
GRG
325#endif // wxUSE_STREAMS
326
327#endif // wxUSE_LIBJPEG
b59ff3c9
VS
328
329
330
331
332
333