25void JPEGImage::init(
void)
42bool JPEGImage::isNull(
void)
44 if (gp==NULL || image==NULL)
return true;
52void JPEGImage::clear(
void)
54 if (gp!=NULL) memset(gp, 0,
sizeof(JSAMPLE)*xs*ys*col);
63void JPEGImage::fill(JSAMPLE v)
66 for (
int i=0; i<xs*ys*col; i++) gp[i] = v;
77void JPEGImage::free(
void)
79 if (gp!=NULL) ::free(gp);
80 if (image!=NULL) ::free(image);
90void JPEGImage::set(
int x,
int y,
int c)
102 memset(gp, 0,
sizeof(JSAMPLE)*c*x*y);
111void JPEGImage::getm(
int x,
int y,
int c)
113 image = (JSAMPARRAY)malloc(
sizeof(JSAMPROW)*y);
118 memset(image, 0,
sizeof(JSAMPROW)*y);
120 gp = (JSAMPLE*)malloc(
sizeof(JSAMPLE)*c*x*y);
126 memset(gp, 0,
sizeof(JSAMPLE)*c*x*y);
129 for (j=0; j<y; j++) image[j] = (JSAMPROW)&gp[j*c*x];
150JPEGImage jbxl::readJPEGFile(
const char* fname)
155 fp = fopen(fname,
"rb");
162 jp = readJPEGData(fp);
181JPEGImage jbxl::readJPEGData(FILE* fp)
185 struct jpeg_decompress_struct jdat;
186 struct jpeg_error_mgr jerr;
190 jdat.err = jpeg_std_error(&jerr);
191 jpeg_create_decompress(&jdat);
198 jpeg_stdio_src(&jdat, fp);
199 jpeg_read_header(&jdat,
TRUE);
200 jpeg_start_decompress(&jdat);
202 xs = jdat.output_width;
203 ys = jdat.output_height;
204 col = jdat.output_components;
205 if (xs<=0 || ys<=0 || col<=0) {
206 jpeg_destroy_decompress(&jdat);
213 if (jp.state)
return jp;
215 int rmn = jdat.output_height;
217 jpeg_read_scanlines(&jdat, jp.image+jdat.output_scanline, rmn);
218 rmn = jdat.output_height - jdat.output_scanline;
220 jpeg_finish_decompress (&jdat);
221 jpeg_destroy_decompress(&jdat);
244int jbxl::writeJPEGFile(
const char* fname, JPEGImage* jp,
int qulty)
253 fp = fopen(fname,
"wb");
258 ret = writeJPEGData(fp, jp, qulty);
281int jbxl::writeJPEGData(FILE* fp, JPEGImage* jp,
int qulty)
283 struct jpeg_compress_struct jdat;
284 struct jpeg_error_mgr jerr;
290 if (qulty>100) qulty = 100;
291 else if (qulty<0) qulty = 0;
293 jdat.err = jpeg_std_error(&jerr);
294 jpeg_create_compress(&jdat);
302 jpeg_stdio_dest(&jdat, fp);
304 jdat.image_width = jp->xs;
305 jdat.image_height = jp->ys;
306 jdat.input_components = jp->col;
307 if (jp->col==1) jdat.in_color_space = JCS_GRAYSCALE;
308 else jdat.in_color_space = JCS_RGB;
310 jpeg_set_quality (&jdat, qulty,
TRUE);
311 jpeg_set_defaults(&jdat);
313 jpeg_start_compress (&jdat,
TRUE);
314 jpeg_write_scanlines(&jdat, jp->image, jp->ys);
315 jpeg_finish_compress(&jdat);
317 jpeg_destroy_compress(&jdat);
337CmnHead jbxl::JPEGImage2CmnHead(JPEGImage jp)
342 memset(&hd, 0,
sizeof(
CmnHead));
354 else if (jp.col==3) {
368 hd.
lsize = jp.xs*jp.ys*jp.col*((hd.
depth+7)/8);
371 if (hd.
grptr==NULL) {
378 for (k=0; k<jp.col; k++) {
380 for (j=0; j<jp.ys; j++) {
382 for (i=0; i<jp.xs; i++) {
404JPEGImage jbxl::CmnHead2JPEGImage(
CmnHead hd)
407 int i, j, k, yp, zp, col;
408 int kind = hd.
kind & 0x00ff;
412 if (hd.
grptr==NULL) {
432 if (jp.isNull())
return jp;
436 for (j=0; j<jp.ys; j++) {
438 for (i=0; i<jp.xs; i++) {
441 jp.point(i, j, 0) = (JSAMPLE)(((
int)(((*ptr)&0xf800)>>11)*255)/32);
442 jp.point(i, j, 1) = (JSAMPLE)(((
int)(((*ptr)&0x07e0)>>5) *255)/64);
443 jp.point(i, j, 2) = (JSAMPLE)(((
int)(((*ptr)&0x001f)) *255)/32);
446 jp.point(i, j, 0) = (JSAMPLE)(((
int)(((*ptr)&0x001f)) *255)/32);
447 jp.point(i, j, 1) = (JSAMPLE)(((
int)(((*ptr)&0x07e0)>>5) *255)/64);
448 jp.point(i, j, 2) = (JSAMPLE)(((
int)(((*ptr)&0xf800)>>11)*255)/32);
456 for (j=0; j<jp.ys; j++) {
458 for (i=0; i<jp.xs; i++) {
461 jp.point(i, j, 0) = (JSAMPLE)(((
int)(((*ptr)&0x0f00)>>8) *255)/16);
462 jp.point(i, j, 1) = (JSAMPLE)(((
int)(((*ptr)&0x00f0)>>4) *255)/16);
463 jp.point(i, j, 2) = (JSAMPLE)(((
int)(((*ptr)&0x000f)) *255)/16);
466 jp.point(i, j, 0) = (JSAMPLE)(((
int)(((*ptr)&0x00f0)>>4) *255)/16);
467 jp.point(i, j, 1) = (JSAMPLE)(((
int)(((*ptr)&0x0f00)>>8) *255)/16);
468 jp.point(i, j, 2) = (JSAMPLE)(((
int)(((*ptr)&0xf000)>>12)*255)/16);
476 for (j=0; j<jp.ys; j++) {
478 for (i=0; i<jp.xs; i++) {
481 jp.point(i, j, 0) = (JSAMPLE)(((
int)(((*ptr)&0xf000)>>12)*255)/16);
482 jp.point(i, j, 1) = (JSAMPLE)(((
int)(((*ptr)&0x0f00)>>8) *255)/16);
483 jp.point(i, j, 2) = (JSAMPLE)(((
int)(((*ptr)&0x00f0)>>4) *255)/16);
486 jp.point(i, j, 0) = (JSAMPLE)(((
int)(((*ptr)&0x000f)) *255)/16);
487 jp.point(i, j, 1) = (JSAMPLE)(((
int)(((*ptr)&0x00f0)>>4) *255)/16);
488 jp.point(i, j, 2) = (JSAMPLE)(((
int)(((*ptr)&0x0f00)>>8) *255)/16);
497 for (k=1; k<=3; k++) {
499 for (j=0; j<jp.ys; j++) {
501 for (i=0; i<jp.xs; i++) {
502 jp.point(i, j, k-1) = (JSAMPLE)hd.
grptr[yp+i];
509 else if (hd.
depth==16) {
513 if (max<ptr[i]) max = ptr[i];
516 for (k=1; k<=3; k++) {
518 for (j=0; j<jp.ys; j++) {
520 for (i=0; i<jp.xs; i++) {
523 else jp.point(i, j, k-1) = (JSAMPLE)hd.
grptr[(yp+i)*2 + 1];
526 jp.point(i, j, k-1) = (JSAMPLE)((ptr[yp+i]*255)/max);
537 for (k=0; k<jp.col; k++) {
539 for (j=0; j<jp.ys; j++) {
541 for (i=0; i<jp.xs; i++) {
542 jp.point(i, j, k) = (JSAMPLE)hd.
grptr[yp+i];
549 else if (hd.
depth==16) {
553 if (max<ptr[i]) max = ptr[i];
556 for (k=0; k<jp.col; k++) {
558 for (j=0; j<jp.ys; j++) {
560 for (i=0; i<jp.xs; i++) {
563 else jp.point(i, j, k) = (JSAMPLE)hd.
grptr[(yp+i)*2 + 1];
566 jp.point(i, j, k) = (JSAMPLE)((ptr[yp+i]*255)/max);
587int jbxl::isJPEGHeader(
Buffer buf)
591 unsigned char* head = buf.
buf;
593 if (head[0]==0xff && head[1]==0xd8) {
594 if (head[2]==0xff)
return TRUE;
unsigned short uWord
2Byte
#define JBXL_GRAPH_IVDARG_ERROR
無効な引数
#define JBXL_GRAPH_NODATA_ERROR
データが無い
#define JBXL_GRAPH_OPFILE_ERROR
ファイルのオープンエラー
#define JBXL_GRAPH_IVDCOLOR_ERROR
無効なカラー指定
#define JBXL_GRAPH_HEADER_ERROR
画像ヘッダーのエラー
#define JBXL_GRAPH_MEMORY_ERROR
メモリエラー
int vldsz
データの長さ.バイナリデータの場合も使用可能.文字列の場合は 0x00 を含まない.
unsigned char * buf
バッファの先頭へのポインタ.str[bufsz]は必ず 0x00となる.
unsigned int lsize
Size of Graphics Data (byte unit)
uByte * buf
Ture Header buffer
int zsize
For 3D Data (or Color)
int kind
Kind of Graphics Format.
unsigned int bsize
Fllowing buf size or Any Data (byte unit)
uByte * grptr
Pointer to Data.
int ysize
Height of Graphics.
int depth
Color Depth of Graphics (bit unit)
int xsize
Width of Graphics.