You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
155 lines
4.1 KiB
155 lines
4.1 KiB
|
|
//
|
|
// JPEGStream.h
|
|
//
|
|
|
|
#ifndef __NODE_JPEG_STREAM_H__
|
|
#define __NODE_JPEG_STREAM_H__
|
|
|
|
#include "Canvas.h"
|
|
#include <jpeglib.h>
|
|
#include <jerror.h>
|
|
|
|
/*
|
|
* Expanded data destination object for closure output,
|
|
* inspired by IJG's jdatadst.c
|
|
*/
|
|
|
|
typedef struct {
|
|
struct jpeg_destination_mgr pub;
|
|
closure_t *closure;
|
|
JOCTET *buffer;
|
|
int bufsize;
|
|
} closure_destination_mgr;
|
|
|
|
void
|
|
init_closure_destination(j_compress_ptr cinfo){
|
|
// we really don't have to do anything here
|
|
}
|
|
|
|
boolean
|
|
empty_closure_output_buffer(j_compress_ptr cinfo){
|
|
NanScope();
|
|
closure_destination_mgr *dest = (closure_destination_mgr *) cinfo->dest;
|
|
Local<Object> buf = NanNewBufferHandle((char *)dest->buffer, dest->bufsize);
|
|
Local<Value> argv[3] = {
|
|
NanNew(NanNull())
|
|
, NanNew(buf)
|
|
, NanNew<Integer>(dest->bufsize)
|
|
};
|
|
NanMakeCallback(NanGetCurrentContext()->Global(), dest->closure->fn, 3, argv);
|
|
cinfo->dest->next_output_byte = dest->buffer;
|
|
cinfo->dest->free_in_buffer = dest->bufsize;
|
|
return true;
|
|
}
|
|
|
|
void
|
|
term_closure_destination(j_compress_ptr cinfo){
|
|
NanScope();
|
|
closure_destination_mgr *dest = (closure_destination_mgr *) cinfo->dest;
|
|
/* emit remaining data */
|
|
size_t remaining = dest->bufsize - cinfo->dest->free_in_buffer;
|
|
Local<Object> buf = NanNewBufferHandle((char *)dest->buffer, remaining);
|
|
|
|
Local<Value> data_argv[3] = {
|
|
NanNew(NanNull())
|
|
, NanNew(buf)
|
|
, NanNew<Number>(remaining)
|
|
};
|
|
|
|
NanMakeCallback(NanGetCurrentContext()->Global(), dest->closure->fn, 3, data_argv);
|
|
|
|
// emit "end"
|
|
Local<Value> end_argv[3] = {
|
|
NanNew(NanNull())
|
|
, NanNew(NanNull())
|
|
, NanNew<Integer>(0)
|
|
};
|
|
|
|
NanMakeCallback(NanGetCurrentContext()->Global(), dest->closure->fn, 3, end_argv);
|
|
}
|
|
|
|
void
|
|
jpeg_closure_dest(j_compress_ptr cinfo, closure_t * closure, int bufsize){
|
|
closure_destination_mgr * dest;
|
|
|
|
/* The destination object is made permanent so that multiple JPEG images
|
|
* can be written to the same buffer without re-executing jpeg_mem_dest.
|
|
*/
|
|
if (cinfo->dest == NULL) { /* first time for this JPEG object? */
|
|
cinfo->dest = (struct jpeg_destination_mgr *)
|
|
(*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
|
|
sizeof(closure_destination_mgr));
|
|
}
|
|
|
|
dest = (closure_destination_mgr *) cinfo->dest;
|
|
|
|
cinfo->dest->init_destination = &init_closure_destination;
|
|
cinfo->dest->empty_output_buffer = &empty_closure_output_buffer;
|
|
cinfo->dest->term_destination = &term_closure_destination;
|
|
|
|
dest->closure = closure;
|
|
dest->bufsize = bufsize;
|
|
dest->buffer = (JOCTET *)malloc(bufsize);
|
|
|
|
cinfo->dest->next_output_byte = dest->buffer;
|
|
cinfo->dest->free_in_buffer = dest->bufsize;
|
|
}
|
|
|
|
void
|
|
jpeg_free_custom_allocations(j_compress_ptr cinfo){
|
|
closure_destination_mgr * dest;
|
|
dest = (closure_destination_mgr *) cinfo->dest;
|
|
if (dest->buffer) {
|
|
free(dest->buffer);
|
|
dest->buffer = NULL;
|
|
}
|
|
}
|
|
|
|
void
|
|
write_to_jpeg_stream(cairo_surface_t *surface, int bufsize, int quality, bool progressive, closure_t *closure){
|
|
int w = cairo_image_surface_get_width(surface);
|
|
int h = cairo_image_surface_get_height(surface);
|
|
struct jpeg_compress_struct cinfo;
|
|
struct jpeg_error_mgr jerr;
|
|
|
|
JSAMPROW slr;
|
|
cinfo.err = jpeg_std_error(&jerr);
|
|
jpeg_create_compress(&cinfo);
|
|
cinfo.in_color_space = JCS_RGB;
|
|
cinfo.input_components = 3;
|
|
cinfo.image_width = w;
|
|
cinfo.image_height = h;
|
|
jpeg_set_defaults(&cinfo);
|
|
if (progressive)
|
|
jpeg_simple_progression(&cinfo);
|
|
jpeg_set_quality(&cinfo, quality, (quality<25)?0:1);
|
|
jpeg_closure_dest(&cinfo, closure, bufsize);
|
|
|
|
jpeg_start_compress(&cinfo, TRUE);
|
|
unsigned char *dst;
|
|
unsigned int *src = (unsigned int *) cairo_image_surface_get_data(surface);
|
|
int sl = 0;
|
|
dst = (unsigned char *) malloc(w * 3);
|
|
while (sl < h) {
|
|
unsigned char *dp = dst;
|
|
int x = 0;
|
|
while (x < w) {
|
|
dp[0] = (*src >> 16) & 255;
|
|
dp[1] = (*src >> 8) & 255;
|
|
dp[2] = *src & 255;
|
|
src++;
|
|
dp += 3;
|
|
x++;
|
|
}
|
|
slr = dst;
|
|
jpeg_write_scanlines(&cinfo, &slr, 1);
|
|
sl++;
|
|
}
|
|
free(dst);
|
|
jpeg_finish_compress(&cinfo);
|
|
jpeg_free_custom_allocations(&cinfo);
|
|
jpeg_destroy_compress(&cinfo);
|
|
}
|
|
|
|
#endif
|
|
|