image_jpg.c 12.5 KB
Newer Older
B
bernard.xiong 已提交
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386

#include <stdio.h>
#include <stdlib.h>
#include "jpeg/jpeglib.h"

#include <rtthread.h>
#include <rtgui/rtgui.h>
#include <rtgui/rtgui_system.h>
#include <rtgui/filerw.h>
#include <rtgui/image_jpeg.h>

static rt_bool_t rtgui_image_jpeg_check(struct rtgui_filerw* file);
static rt_bool_t rtgui_image_jpeg_load(struct rtgui_image* image, struct rtgui_filerw* file, rt_bool_t load);
static void rtgui_image_jpeg_unload(struct rtgui_image* image);
static void rtgui_image_jpeg_blit(struct rtgui_image* image, struct rtgui_dc* dc, struct rtgui_rect* rect);

struct rtgui_jpeg_error_mgr
{
	struct jpeg_error_mgr pub;	/* "public" fields */
};

struct rtgui_image_jpeg
{
	rt_bool_t is_loaded;

	struct rtgui_filerw* filerw;

	/* jpeg structure */
	struct jpeg_decompress_struct cinfo;
	struct rtgui_jpeg_error_mgr errmgr;

	rt_uint8_t *pixels;
	rt_uint8_t *line_pixels;
};

struct rtgui_image_engine rtgui_image_jpeg_engine =
{
	"jpeg",
	{RT_NULL},
	rtgui_image_jpeg_check,
	rtgui_image_jpeg_load,
	rtgui_image_jpeg_unload,
	rtgui_image_jpeg_blit
};

#define INPUT_BUFFER_SIZE	4096
typedef struct {
	struct jpeg_source_mgr pub;

	struct rtgui_filerw* ctx;
	rt_uint8_t buffer[INPUT_BUFFER_SIZE];
} rtgui_jpeg_source_mgr;

/*
* Initialize source --- called by jpeg_read_header
* before any data is actually read.
*/
static void init_source (j_decompress_ptr cinfo)
{
	/* We don't actually need to do anything */
	return;
}

/*
* Fill the input buffer --- called whenever buffer is emptied.
*/
static boolean fill_input_buffer (j_decompress_ptr cinfo)
{
	rtgui_jpeg_source_mgr * src = (rtgui_jpeg_source_mgr *) cinfo->src;
	int nbytes;

	nbytes = rtgui_filerw_read(src->ctx, src->buffer, 1, INPUT_BUFFER_SIZE);
	if (nbytes <= 0)
	{
		/* Insert a fake EOI marker */
		src->buffer[0] = (rt_uint8_t) 0xFF;
		src->buffer[1] = (rt_uint8_t) JPEG_EOI;
		nbytes = 2;
	}

	src->pub.next_input_byte = src->buffer;
	src->pub.bytes_in_buffer = nbytes;

	return TRUE;
}


/*
* Skip data --- used to skip over a potentially large amount of
* uninteresting data (such as an APPn marker).
*
* Writers of suspendable-input applications must note that skip_input_data
* is not granted the right to give a suspension return.  If the skip extends
* beyond the data currently in the buffer, the buffer can be marked empty so
* that the next read will cause a fill_input_buffer call that can suspend.
* Arranging for additional bytes to be discarded before reloading the input
* buffer is the application writer's problem.
*/
static void skip_input_data (j_decompress_ptr cinfo, long num_bytes)
{
	rtgui_jpeg_source_mgr * src = (rtgui_jpeg_source_mgr *) cinfo->src;

	/* Just a dumb implementation for now.	Could use fseek() except
	* it doesn't work on pipes.  Not clear that being smart is worth
	* any trouble anyway --- large skips are infrequent.
	*/
	if (num_bytes > 0)
	{
		while (num_bytes > (long) src->pub.bytes_in_buffer)
		{
			num_bytes -= (long) src->pub.bytes_in_buffer;
			(void) src->pub.fill_input_buffer(cinfo);
			/* note we assume that fill_input_buffer will never
			* return FALSE, so suspension need not be handled.
			*/
		}
		src->pub.next_input_byte += (size_t) num_bytes;
		src->pub.bytes_in_buffer -= (size_t) num_bytes;
	}
}

/*
* Terminate source --- called by jpeg_finish_decompress
* after all data has been read.
*/
static void term_source (j_decompress_ptr cinfo)
{
	/* We don't actually need to do anything */
	return;
}

/*
* Prepare for input from a stdio stream.
* The caller must have already opened the stream, and is responsible
* for closing it after finishing decompression.
*/
static void rtgui_jpeg_filerw_src_init(j_decompress_ptr cinfo, struct rtgui_filerw *ctx)
{
	rtgui_jpeg_source_mgr *src;

	/* The source object and input buffer are made permanent so that a series
	* of JPEG images can be read from the same file by calling jpeg_stdio_src
	* only before the first one.  (If we discarded the buffer at the end of
	* one image, we'd likely lose the start of the next one.)
	* This makes it unsafe to use this manager and a different source
	* manager serially with the same JPEG object.  Caveat programmer.
	*/
	if (cinfo->src == NULL) {	/* first time for this JPEG object? */
		cinfo->src = (struct jpeg_source_mgr *)
			(*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
			sizeof(rtgui_jpeg_source_mgr));
		src = (rtgui_jpeg_source_mgr *) cinfo->src;
	}

	src = (rtgui_jpeg_source_mgr *) cinfo->src;
	src->pub.init_source = init_source;
	src->pub.fill_input_buffer = fill_input_buffer;
	src->pub.skip_input_data = skip_input_data;
	src->pub.resync_to_restart = jpeg_resync_to_restart; /* use default method */
	src->pub.term_source = term_source;
	src->ctx = ctx;
	src->pub.bytes_in_buffer = 0; /* forces fill_input_buffer on first read */
	src->pub.next_input_byte = NULL; /* until buffer loaded */
}

/* get line data of a jpeg image */
static rt_uint8_t *rtgui_image_get_line(struct rtgui_image* image, int h)
{
	struct rtgui_image_jpeg* jpeg;
	rt_uint8_t *result_ptr;

	JSAMPARRAY buffer;		/* Output row buffer */
	int row_stride;

	RT_ASSERT(image != RT_NULL);
	jpeg = (struct rtgui_image_jpeg*) image->data;
	RT_ASSERT(jpeg != RT_NULL);

	if (h < 0 || h > image->h) return RT_NULL;

	/* if the image is loaded, */
	if (jpeg->is_loaded == RT_TRUE)
	{
		result_ptr = jpeg->pixels + (image->w * sizeof(rtgui_color_t)) * h;

		return result_ptr;
	}

	if (jpeg->line_pixels == RT_NULL)
		jpeg->line_pixels = rtgui_malloc(image->w * sizeof(rtgui_color_t));

	row_stride = jpeg->cinfo.output_width * jpeg->cinfo.output_components;
	buffer = (*jpeg->cinfo.mem->alloc_sarray)
		((j_common_ptr) &jpeg->cinfo, JPOOL_IMAGE, row_stride, 1);

	/* decompress line data */
	jpeg->cinfo.output_scanline = h;
	jpeg_read_scanlines(&jpeg->cinfo, buffer, (JDIMENSION) 1);

	/* copy pixels memory */
	{
		int index;
		rtgui_color_t *ptr;

		ptr = (rtgui_color_t*)jpeg->line_pixels;
		for (index = 0; index < image->w; index ++)
			ptr[index] = RTGUI_ARGB(0, buffer[0][index*3], buffer[0][index*3+1], buffer[0][index*3+2]);
	}

	return jpeg->line_pixels;
}

static rt_bool_t rtgui_image_jpeg_loadall(struct rtgui_image* image)
{
	struct rtgui_image_jpeg* jpeg;
	rt_uint8_t* line_ptr;
	JSAMPARRAY buffer;		/* Output row buffer */
	int row_stride;

	jpeg = (struct rtgui_image_jpeg*) image->data;
	RT_ASSERT(jpeg != RT_NULL);

	/* already load */
	if (jpeg->pixels != RT_NULL) return RT_TRUE;

	/* allocate all pixels */
	jpeg->pixels = rtgui_malloc(image->h * image->w * sizeof(rtgui_color_t));
	if (jpeg->pixels == RT_NULL) return RT_FALSE;

	/* reset scan line to zero */
	jpeg->cinfo.output_scanline = 0;
	line_ptr = jpeg->pixels;

	row_stride = jpeg->cinfo.output_width * jpeg->cinfo.output_components;
	buffer = (*jpeg->cinfo.mem->alloc_sarray)
		((j_common_ptr) &jpeg->cinfo, JPOOL_IMAGE, row_stride, 1);

	/* decompress all pixels */
	while (jpeg->cinfo.output_scanline < jpeg->cinfo.output_height)
	{
		/* jpeg_read_scanlines expects an array of pointers to scanlines.
		* Here the array is only one element long, but you could ask for
		* more than one scanline at a time if that's more convenient.
		*/
		(void) jpeg_read_scanlines(&jpeg->cinfo, buffer, 1);

		/* copy pixels memory */
		{
			int index;
			rtgui_color_t *ptr;

			ptr = (rtgui_color_t*)line_ptr;
			for (index = 0; index < image->w; index ++)
				ptr[index] = RTGUI_ARGB(0, buffer[0][index*3], buffer[0][index*3+1], buffer[0][index*3+2]);
		}

		/* move to next line */
		line_ptr += image->w * sizeof(rtgui_color_t);
	}

	/* decompress done */
	rtgui_filerw_close(jpeg->filerw);
	jpeg_finish_decompress(&jpeg->cinfo);

	jpeg->is_loaded = RT_TRUE;
	return RT_TRUE;
}

void rtgui_image_jpeg_init()
{
	/* register jpeg on image system */
	rtgui_image_register_engine(&rtgui_image_jpeg_engine);
}

static void my_error_exit(j_common_ptr cinfo)
{
}

static void output_no_message(j_common_ptr cinfo)
{
	/* do nothing */
}

static rt_bool_t rtgui_image_jpeg_load(struct rtgui_image* image, struct rtgui_filerw* file, rt_bool_t load)
{
	struct rtgui_image_jpeg* jpeg;

	jpeg = (struct rtgui_image_jpeg*) rtgui_malloc(sizeof(struct rtgui_image_jpeg));
	if (jpeg == RT_NULL) return RT_FALSE;

	jpeg->filerw = file;

	/* read file header */
	/* Create a decompression structure and load the JPEG header */
	jpeg->cinfo.err = jpeg_std_error(&jpeg->errmgr.pub);
	jpeg->errmgr.pub.error_exit = my_error_exit;
	jpeg->errmgr.pub.output_message = output_no_message;

	jpeg_create_decompress(&jpeg->cinfo);
	rtgui_jpeg_filerw_src_init(&jpeg->cinfo, jpeg->filerw);
	(void)jpeg_read_header(&jpeg->cinfo, TRUE);

	image->w = jpeg->cinfo.image_width;
	image->h = jpeg->cinfo.image_height;

	/* set image private data and engine */
	image->data = jpeg;
	image->engine = &rtgui_image_jpeg_engine;

	/* start decompression */
	(void) jpeg_start_decompress(&jpeg->cinfo);

	jpeg->cinfo.out_color_space = JCS_RGB;
	jpeg->cinfo.quantize_colors = FALSE;
	/* use fast jpeg */
	jpeg->cinfo.scale_num	= 1;
	jpeg->cinfo.scale_denom = 1;
	jpeg->cinfo.dct_method = JDCT_FASTEST;
	jpeg->cinfo.do_fancy_upsampling = FALSE;

	jpeg->pixels = RT_NULL;
	jpeg->is_loaded = RT_FALSE;

	/* allocate line pixels */
	jpeg->line_pixels = rtgui_malloc(image->w * sizeof(rtgui_color_t));
	if (jpeg->line_pixels == RT_NULL)
	{
		/* no memory */
		jpeg_finish_decompress(&jpeg->cinfo);
		rt_free(jpeg);

		return RT_FALSE;
	}

	if (load == RT_TRUE) rtgui_image_jpeg_loadall(image);

	/* create jpeg image successful */
	return RT_TRUE;
}


static void rtgui_image_jpeg_unload(struct rtgui_image* image)
{
	if (image != RT_NULL)
	{
		struct rtgui_image_jpeg* jpeg;

		jpeg = (struct rtgui_image_jpeg*) image->data;
		RT_ASSERT(jpeg != RT_NULL);

		if (jpeg->is_loaded == RT_TRUE)
			rtgui_free(jpeg->pixels);
		if (jpeg->line_pixels != RT_NULL) rtgui_free(jpeg->line_pixels);

		if (jpeg->is_loaded != RT_TRUE)
		{
			rtgui_filerw_close(jpeg->filerw);
			jpeg_finish_decompress(&jpeg->cinfo);
		}
		rt_free(jpeg);
	}
}

static void rtgui_image_jpeg_blit(struct rtgui_image* image, struct rtgui_dc* dc, struct rtgui_rect* rect)
{
	rt_uint16_t x, y;
	rtgui_color_t* ptr;
	struct rtgui_image_jpeg* jpeg;

	RT_ASSERT(image != RT_NULL && dc != RT_NULL && rect != RT_NULL);

	jpeg = (struct rtgui_image_jpeg*) image->data;
	RT_ASSERT(jpeg != RT_NULL);

	if (jpeg->pixels != RT_NULL)
	{
		ptr = (rtgui_color_t*) jpeg->pixels;

		/* draw each point within dc */
		for (y = 0; y < image->h; y ++)
		{
			for (x = 0; x < image->w; x++)
			{
				/* not alpha */
				if ((*ptr >> 24) != 255)
				{
387
					rtgui_dc_draw_color_point(dc, x + rect->x1, y + rect->y1, *ptr);
B
bernard.xiong 已提交
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
				}

				/* move to next color buffer */
				ptr ++;
			}
		}
	}
	else 
	{
		/* seek to the begin of file */
		rtgui_filerw_seek(jpeg->filerw, 0, SEEK_SET);

		/* decompress line and line */
		for (y = 0; y < image->h; y ++)
		{
			ptr = (rtgui_color_t*)rtgui_image_get_line(image, y);
			for (x = 0; x < image->w; x++)
			{
				/* not alpha */
				if ((*ptr >> 24) != 255)
				{
409
					rtgui_dc_draw_color_point(dc, x + rect->x1, y + rect->y1, *ptr);
B
bernard.xiong 已提交
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
				}

				/* move to next color buffer */
				ptr ++;
			}
		}
	}
}

static rt_bool_t rtgui_image_jpeg_check(struct rtgui_filerw* file)
{
	int start;
	rt_bool_t is_JPG;
	int in_scan;
	rt_uint8_t magic[4];

	if (file == RT_NULL) return RT_FALSE; /* open file failed */

	start = rtgui_filerw_tell(file);
	is_JPG = RT_FALSE;
	in_scan = 0;

	/* seek to the begining of file */
	rtgui_filerw_seek(file, 0, SEEK_SET);
		
	if ( rtgui_filerw_read(file, magic, 2, 1) ) {
		if ( (magic[0] == 0xFF) && (magic[1] == 0xD8) ) {
			is_JPG = RT_TRUE;
			while (is_JPG == RT_TRUE) {
				if(rtgui_filerw_read(file, magic, 1, 2) != 2) {
					is_JPG = RT_FALSE;
				} else if( (magic[0] != 0xFF) && (in_scan == 0) ) {
					is_JPG = RT_FALSE;
				} else if( (magic[0] != 0xFF) || (magic[1] == 0xFF) ) {
					/* Extra padding in JPEG (legal) */
					/* or this is data and we are scanning */
					rtgui_filerw_seek(file, -1, SEEK_CUR);
				} else if(magic[1] == 0xD9) {
					/* Got to end of good JPEG */
					break;
				} else if( (in_scan == 1) && (magic[1] == 0x00) ) {
					/* This is an encoded 0xFF within the data */
				} else if( (magic[1] >= 0xD0) && (magic[1] < 0xD9) ) {
					/* These have nothing else */
				} else if(rtgui_filerw_read(file, magic+2, 1, 2) != 2) {
					is_JPG = RT_FALSE;
				} else {
					/* Yes, it's big-endian */
					rt_uint32_t start;
					rt_uint32_t size;
					rt_uint32_t end;
					start = rtgui_filerw_tell(file);
					size = (magic[2] << 8) + magic[3];
					end = rtgui_filerw_seek(file, size-2, SEEK_CUR);
					if ( end != start + size - 2 ) is_JPG = RT_FALSE;
					if ( magic[1] == 0xDA ) {
						/* Now comes the actual JPEG meat */
						/* It is a JPEG. */
						break;
					}
				}
			}
		}
	}
	rtgui_filerw_seek(file, start, SEEK_SET);

	return is_JPG;
}