-
Notifications
You must be signed in to change notification settings - Fork 21
/
Jpegfile.cpp
1596 lines (1363 loc) · 42.8 KB
/
Jpegfile.cpp
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
////////////////////////////////////////////////////////////
// JpegFile - A C++ class to allow reading and writing of
// RGB and Grayscale JPEG images.
// It is based on the IJG V.6 code.
//
// This class Copyright 1997, Chris Losinger
// This is free to use and modify provided my name is
// included.
//
// See jpegfile.h for usage.
//
////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "JpegFile.h"
#define MAX_SIZE 1000000
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
#include "jpeglib\\jpeglib.h"
#ifdef __cplusplus
}
#endif // __cplusplus
//
//
//
/*
* <setjmp.h> is used for the optional error recovery mechanism shown in
* the second part of the example.
*/
#include <setjmp.h>
// error handler, to avoid those pesky exit(0)'s
struct my_error_mgr {
struct jpeg_error_mgr pub; /* "public" fields */
jmp_buf setjmp_buffer; /* for return to caller */
};
typedef struct my_error_mgr * my_error_ptr;
//
//
//
METHODDEF(void) my_error_exit (j_common_ptr cinfo);
//
// to handle fatal errors.
// the original JPEG code will just exit(0). can't really
// do that in Windows....
//
METHODDEF(void) my_error_exit (j_common_ptr cinfo)
{
/* cinfo->err really points to a my_error_mgr struct, so coerce pointer */
my_error_ptr myerr = (my_error_ptr) cinfo->err;
char buffer[JMSG_LENGTH_MAX];
/* Create the message */
(*cinfo->err->format_message) (cinfo, buffer);
/* Always display the message. */
//MessageBox(NULL,buffer,"JPEG Fatal Error",MB_ICONSTOP);
/* Return control to the setjmp point */
longjmp(myerr->setjmp_buffer, 1);
}
// store a scanline to our data buffer
void j_putRGBScanline(BYTE *jpegline,
int widthPix,
BYTE *outBuf,
int row);
void j_putGrayScanlineToRGB(BYTE *jpegline,
int widthPix,
BYTE *outBuf,
int row);
//
// constructor doesn't do much - there's no real class here...
//
JpegFile::JpegFile()
{
m_dwPoint = 0;
// m_lpBuffer = NULL;
m_bOpening = false;
m_dwOutMaxSize = 0;
m_lpOutBuffer = NULL;
m_dwScreenMaxSize = 0;
m_lpScreenBuffer = NULL;
m_lpPreData = NULL;
}
//
//
//
JpegFile::~JpegFile()
{
if (m_lpPreData) GlobalFree (m_lpPreData);
if (m_lpOutBuffer) GlobalFree (m_lpOutBuffer);
if (m_lpScreenBuffer) GlobalFree (m_lpScreenBuffer);
}
//
// read a JPEG file
//
BYTE * JpegFile::JpegFileToRGB(BYTE *inBuf,
unsigned long size,
UINT *width,
UINT *height)
{
// get our buffer set to hold data
BYTE *dataBuf = NULL;
// basic code from IJG Jpeg Code v6 example.c
*width=0;
*height=0;
/* This struct contains the JPEG decompression parameters and pointers to
* working space (which is allocated as needed by the JPEG library).
*/
struct jpeg_decompress_struct cinfo;
/* We use our private extension JPEG error handler.
* Note that this struct must live as long as the main JPEG parameter
* struct, to avoid dangling-pointer problems.
*/
struct my_error_mgr jerr;
/* More stuff */
FILE * infile=NULL; /* source file */
JSAMPARRAY buffer; /* Output row buffer */
int row_stride; /* physical row width in output buffer */
// char buf[250];
/* In this example we want to open the input file before doing anything else,
* so that the setjmp() error recovery below can assume the file is open.
* VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
* requires it in order to read binary files.
*/
/* if ((infile = fopen(fileName, "rb")) == NULL) {
sprintf(buf, "JPEG :\nCan't open %s\n", fileName);
AfxMessageBox(buf);
return NULL;
}
*/
/* Step 1: allocate and initialize JPEG decompression object */
/* We set up the normal JPEG error routines, then override error_exit. */
cinfo.err = jpeg_std_error(&jerr.pub);
jerr.pub.error_exit = my_error_exit;
/* Establish the setjmp return context for my_error_exit to use. */
if (setjmp(jerr.setjmp_buffer)) {
/* If we get here, the JPEG code has signaled an error.
* We need to clean up the JPEG object, close the input file, and return.
*/
jpeg_destroy_decompress(&cinfo);
/*
if (infile!=NULL)
fclose(infile);
if (dataBuf!=NULL)
{
delete [] dataBuf;
}
*/
return NULL;
}
/* Now we can initialize the JPEG decompression object. */
jpeg_create_decompress(&cinfo);
cinfo.l_size = size;
cinfo.l_point = 0;
cinfo.i_stream = 1;
cinfo.buffer = inBuf;
/* Step 2: specify data source (eg, a file) */
jpeg_stdio_src(&cinfo, infile);
/* Step 3: read file parameters with jpeg_read_header() */
(void) jpeg_read_header(&cinfo, TRUE);
/* We can ignore the return value from jpeg_read_header since
* (a) suspension is not possible with the stdio data source, and
* (b) we passed TRUE to reject a tables-only JPEG file as an error.
* See libjpeg.doc for more info.
*/
/* Step 4: set parameters for decompression */
/* In this example, we don't need to change any of the defaults set by
* jpeg_read_header(), so we do nothing here.
*/
/* Step 5: Start decompressor */
(void) jpeg_start_decompress(&cinfo);
/* We can ignore the return value since suspension is not possible
* with the stdio data source.
*/
/* We may need to do some setup of our own at this point before reading
* the data. After jpeg_start_decompress() we have the correct scaled
* output image dimensions available, as well as the output colormap
* if we asked for color quantization.
* In this example, we need to make an output work buffer of the right size.
*/
////////////////////////////////////////////////////////////
// alloc and open our new buffer
// dataBuf=(BYTE *)new BYTE[cinfo.output_width * 3 * cinfo.output_height];
DWORD dwSize = cinfo.output_width * 3 * cinfo.output_height;
if (m_lpOutBuffer==NULL || m_dwOutMaxSize < dwSize)
{
if (m_lpOutBuffer) GlobalFree (m_lpOutBuffer);
m_lpOutBuffer = (BYTE *)GlobalAlloc (GMEM_FIXED, dwSize);
m_dwOutMaxSize = dwSize;
if (m_lpOutBuffer == NULL)
{
AfxMessageBox("JpegFile :\nOut of memory",MB_ICONSTOP);
jpeg_destroy_decompress(&cinfo);
//DEL fclose(infile);
return NULL;
}
}
dataBuf = m_lpOutBuffer;
// how big is this thing gonna be?
*width = cinfo.output_width;
*height = cinfo.output_height;
/* JSAMPLEs per row in output buffer */
row_stride = cinfo.output_width * cinfo.output_components;
/* Make a one-row-high sample array that will go away when done with image */
buffer = (*cinfo.mem->alloc_sarray)
((j_common_ptr) &cinfo, JPOOL_IMAGE, row_stride, 1);
/* Step 6: while (scan lines remain to be read) */
/* jpeg_read_scanlines(...); */
/* Here we use the library's state variable cinfo.output_scanline as the
* loop counter, so that we don't have to keep track ourselves.
*/
while (cinfo.output_scanline < 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(&cinfo, buffer, 1);
/* Assume put_scanline_someplace wants a pointer and sample count. */
// asuumer all 3-components are RGBs
if (cinfo.out_color_components==3) {
j_putRGBScanline(buffer[0],
*width,
dataBuf,
cinfo.output_scanline-1);
} else if (cinfo.out_color_components==1) {
// assume all single component images are grayscale
j_putGrayScanlineToRGB(buffer[0],
*width,
dataBuf,
cinfo.output_scanline-1);
}
}
/* Step 7: Finish decompression */
(void) jpeg_finish_decompress(&cinfo);
/* We can ignore the return value since suspension is not possible
* with the stdio data source.
*/
/* Step 8: Release JPEG decompression object */
/* This is an important step since it will release a good deal of memory. */
jpeg_destroy_decompress(&cinfo);
/* After finish_decompress, we can close the input file.
* Here we postpone it until after no more JPEG errors are possible,
* so as to simplify the setjmp error logic above. (Actually, I don't
* think that jpeg_destroy can do an error exit, but why assume anything...)
*/
// fclose(infile);
/* At this point you may want to check to see whether any corrupt-data
* warnings occurred (test whether jerr.pub.num_warnings is nonzero).
*/
return dataBuf;
}
BOOL JpegFile::GetJPGDimensions(CString fileName,
UINT *width,
UINT *height)
{
// basic code from IJG Jpeg Code v6 example.c
/* This struct contains the JPEG decompression parameters and pointers to
* working space (which is allocated as needed by the JPEG library).
*/
struct jpeg_decompress_struct cinfo;
/* We use our private extension JPEG error handler.
* Note that this struct must live as long as the main JPEG parameter
* struct, to avoid dangling-pointer problems.
*/
struct my_error_mgr jerr;
/* More stuff */
FILE * infile=NULL; /* source file */
char buf[250];
/* In this example we want to open the input file before doing anything else,
* so that the setjmp() error recovery below can assume the file is open.
* VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
* requires it in order to read binary files.
*/
if ((infile = fopen(fileName, "rb")) == NULL) {
sprintf(buf, "JPEG :\nCan't open %s\n", fileName);
AfxMessageBox(buf);
return FALSE;
}
/* Step 1: allocate and initialize JPEG decompression object */
/* We set up the normal JPEG error routines, then override error_exit. */
cinfo.err = jpeg_std_error(&jerr.pub);
jerr.pub.error_exit = my_error_exit;
/* Establish the setjmp return context for my_error_exit to use. */
if (setjmp(jerr.setjmp_buffer)) {
/* If we get here, the JPEG code has signaled an error.
* We need to clean up the JPEG object, close the input file, and return.
*/
jpeg_destroy_decompress(&cinfo);
if (infile!=NULL)
fclose(infile);
return FALSE;
}
/* Now we can initialize the JPEG decompression object. */
jpeg_create_decompress(&cinfo);
/* Step 2: specify data source (eg, a file) */
jpeg_stdio_src(&cinfo, infile);
/* Step 3: read file parameters with jpeg_read_header() */
(void) jpeg_read_header(&cinfo, TRUE);
/* We can ignore the return value from jpeg_read_header since
* (a) suspension is not possible with the stdio data source, and
* (b) we passed TRUE to reject a tables-only JPEG file as an error.
* See libjpeg.doc for more info.
*/
// how big is this thing ?
*width = cinfo.image_width;
*height = cinfo.image_height;
/* Step 8: Release JPEG decompression object */
/* This is an important step since it will release a good deal of memory. */
jpeg_destroy_decompress(&cinfo);
/* After finish_decompress, we can close the input file.
* Here we postpone it until after no more JPEG errors are possible,
* so as to simplify the setjmp error logic above. (Actually, I don't
* think that jpeg_destroy can do an error exit, but why assume anything...)
*/
fclose(infile);
/* At this point you may want to check to see whether any corrupt-data
* warnings occurred (test whether jerr.pub.num_warnings is nonzero).
*/
return TRUE;
}
//
//
//
BYTE *JpegFile::RGBFromDWORDAligned(BYTE *inBuf,
UINT widthPix,
UINT widthBytes,
UINT height)
{
if (inBuf==NULL)
return NULL;
BYTE *tmp;
tmp=(BYTE *)new BYTE[height * widthPix * 3];
if (tmp==NULL)
return NULL;
UINT row;
for (row=0;row<height;row++) {
memcpy((tmp+row * widthPix * 3),
(inBuf + row * widthBytes),
widthPix * 3);
}
return tmp;
}
//
//
//
BOOL JpegFile::RGBToJpegFile(BYTE *dataBuf,
BYTE *outBuf,
UINT widthPix,
UINT height,
BOOL color,
int quality,
unsigned long *size)
{
BOOL b_return = true;
FILE *outfile = NULL; /* target file */
/* FILE outtmp;
FILE *outfile = &outtmp;
memset(outfile, 0, sizeof(FILE));
*/ if (dataBuf==NULL) goto err01;
if (outBuf == NULL) goto err01;
if (widthPix==0) goto err01;
if (height==0) goto err01;
// we vertical flip for display. undo that.
// VertFlipBuf(dataBuf, widthPix * 3, height);
// we swap red and blue for display, undo that.
// BGRFromRGB(dataBuf, widthPix, height);
LPBYTE tmp;
if (!color) {
tmp = (BYTE*)new BYTE[widthPix*height];
if (tmp==NULL) goto err01;
UINT row,col;
for (row=0;row<height;row++) {
for (col=0;col<widthPix;col++) {
LPBYTE pRed, pGrn, pBlu;
pRed = dataBuf + row * widthPix * 3 + col * 3;
pGrn = dataBuf + row * widthPix * 3 + col * 3 + 1;
pBlu = dataBuf + row * widthPix * 3 + col * 3 + 2;
// luminance
int lum = (int)(.299 * (double)(*pRed) + .587 * (double)(*pGrn) + .114 * (double)(*pBlu));
LPBYTE pGray;
pGray = tmp + row * widthPix + col;
*pGray = (BYTE)lum;
}
}
}
struct jpeg_compress_struct cinfo;
/* More stuff */
int row_stride; /* physical row widthPix in image buffer */
struct my_error_mgr jerr;
/* Step 1: allocate and initialize JPEG compression object */
cinfo.err = jpeg_std_error(&jerr.pub);
jerr.pub.error_exit = my_error_exit;
/* Establish the setjmp return context for my_error_exit to use. */
if (setjmp(jerr.setjmp_buffer)) {
/* If we get here, the JPEG code has signaled an error.
* We need to clean up the JPEG object, close the input file, and return.
*/
jpeg_destroy_compress(&cinfo);
//DEL if (outfile!=NULL)
//DEL fclose(outfile);
if (!color) delete [] tmp;
//DEL return FALSE;
//DEL if (!color)
goto err01;
}
/* Now we can initialize the JPEG compression object. */
jpeg_create_compress(&cinfo);
cinfo.l_size = *size;
cinfo.l_point = 0;
cinfo.i_stream = 1;
cinfo.buffer = (unsigned char *)outBuf;
/* Step 2: specify data destination (eg, a file) */
/* Note: steps 2 and 3 can be done in either order. */
/*
if ((outfile = fopen("c:\\111.jpg", "wb")) == NULL)
{
char buf[250];
//sprintf(buf, "JpegFile :\nCan't open %s\n", fileName);
AfxMessageBox(buf);
return FALSE;
}
*/
jpeg_stdio_dest(&cinfo, outfile);
/* Step 3: set parameters for compression */
/* First we supply a description of the input image.
* Four fields of the cinfo struct must be filled in:
*/
cinfo.image_width = widthPix; /* image widthPix and height, in pixels */
cinfo.image_height = height;
if (color) {
cinfo.input_components = 3; /* # of color components per pixel */
cinfo.in_color_space = JCS_RGB; /* colorspace of input image */
} else {
cinfo.input_components = 1; /* # of color components per pixel */
cinfo.in_color_space = JCS_GRAYSCALE; /* colorspace of input image */
}
/* Now use the library's routine to set default compression parameters.
* (You must set at least cinfo.in_color_space before calling this,
* since the defaults depend on the source color space.)
*/
jpeg_set_defaults(&cinfo);
/* Now you can set any non-default parameters you wish to.
* Here we just illustrate the use of quality (quantization table) scaling:
*/
jpeg_set_quality(&cinfo, quality, TRUE /* limit to baseline-JPEG values */);
/* Step 4: Start compressor */
/* TRUE ensures that we will write a complete interchange-JPEG file.
* Pass TRUE unless you are very sure of what you're doing.
*/
jpeg_start_compress(&cinfo, TRUE);
/* Step 5: while (scan lines remain to be written) */
/* jpeg_write_scanlines(...); */
/* Here we use the library's state variable cinfo.next_scanline as the
* loop counter, so that we don't have to keep track ourselves.
* To keep things simple, we pass one scanline per call; you can pass
* more if you wish, though.
*/
row_stride = widthPix * 3; /* JSAMPLEs per row in image_buffer */
while (cinfo.next_scanline < cinfo.image_height) {
/* jpeg_write_scanlines expects an array of pointers to scanlines.
* Here the array is only one element long, but you could pass
* more than one scanline at a time if that's more convenient.
*/
LPBYTE outRow;
if (color) {
outRow = dataBuf + (cinfo.next_scanline * widthPix * 3);
} else {
outRow = tmp + (cinfo.next_scanline * widthPix);
}
(void) jpeg_write_scanlines(&cinfo, &outRow, 1);
}
/* Step 6: Finish compression */
jpeg_finish_compress(&cinfo);
*size = cinfo.l_point;
/* After finish_compress, we can close the output file. */
//DEL fclose(outfile);
/* Step 7: release JPEG compression object */
/* This is an important step since it will release a good deal of memory. */
if (cinfo.l_point > cinfo.l_size)
b_return = false;
jpeg_destroy_compress(&cinfo);
// fclose(outfile);
if (!color) delete [] tmp;
/* And we're done! */
return b_return;
err01:
return false;
// return TRUE;
}
//
// stash a scanline
//
void j_putRGBScanline(BYTE *jpegline,
int widthPix,
BYTE *outBuf,
int row)
{
int offset = row * widthPix * 3;
int count;
for (count=0;count<widthPix;count++)
{
*(outBuf + offset + count * 3 + 0) = *(jpegline + count * 3 + 0);
*(outBuf + offset + count * 3 + 1) = *(jpegline + count * 3 + 1);
*(outBuf + offset + count * 3 + 2) = *(jpegline + count * 3 + 2);
}
}
//
// stash a gray scanline
//
void j_putGrayScanlineToRGB(BYTE *jpegline,
int widthPix,
BYTE *outBuf,
int row)
{
int offset = row * widthPix * 3;
int count;
for (count=0;count<widthPix;count++) {
BYTE iGray;
// get our grayscale value
iGray = *(jpegline + count);
*(outBuf + offset + count * 3 + 0) = iGray;
*(outBuf + offset + count * 3 + 1) = iGray;
*(outBuf + offset + count * 3 + 2) = iGray;
}
}
//
// copies BYTE buffer into DWORD-aligned BYTE buffer
// return addr of new buffer
//
BYTE * JpegFile::MovetoBuf(BYTE *dataBuf,
CRect *prcRect, // pixels!!
UINT widthNew,
UINT heightNew) // bytes!!!
{
////////////////////////////////////////////////////////////
// what's going on here? this certainly means trouble
if (dataBuf==NULL)
return NULL;
////////////////////////////////////////////////////////////
// how big is the smallest DWORD-aligned buffer that we can use?
UINT uiWidthBytes, uiWidthBytesNew;
uiWidthBytes = WIDTHBYTES(prcRect->Width() * 24);
uiWidthBytes = 3 * prcRect->Width();
uiWidthBytesNew = 3 * widthNew;
DWORD dwNewsize=(DWORD)((DWORD)uiWidthBytesNew *
(DWORD)heightNew);
BYTE *pNew;
////////////////////////////////////////////////////////////
// alloc and open our new buffer
pNew=(BYTE *)new BYTE[dwNewsize];
if (pNew==NULL) {
return NULL;
}
UINT row,col;
memset(pNew, 0,dwNewsize);
for (row=0;(int)row<prcRect->Height();row++) {
for (col=0;(int)col<prcRect->Width();col++) {
BYTE pRed, pGrn, pBlu;
pRed = dataBuf[row * prcRect->Width() * 3 + col * 3];
pGrn = dataBuf[row * prcRect->Width() * 3 + col * 3+1];
pBlu = dataBuf[row * prcRect->Width() * 3 + col * 3+2];
pNew[(heightNew - prcRect->bottom + row) * widthNew * 3 + (col+prcRect->left) * 3] = (BYTE)pRed;
pNew[(heightNew - prcRect->bottom + row) * widthNew * 3 + (col+prcRect->left) * 3+1] = (BYTE)pGrn;
pNew[(heightNew - prcRect->bottom + row) * widthNew * 3 + (col+prcRect->left) * 3+2] = (BYTE)pBlu;
}
}
return pNew;
}
//
// copies BYTE buffer into DWORD-aligned BYTE buffer
// return addr of new buffer
//
BYTE * JpegFile::MakeDwordAlignedBuf(BYTE *dataBuf,
UINT widthPix, // pixels!!
UINT height,
UINT *uiOutWidthBytes) // bytes!!!
{
////////////////////////////////////////////////////////////
// what's going on here? this certainly means trouble
if (dataBuf==NULL)
return NULL;
////////////////////////////////////////////////////////////
// how big is the smallest DWORD-aligned buffer that we can use?
UINT uiWidthBytes;
uiWidthBytes = WIDTHBYTES(widthPix * 24);
DWORD dwNewsize=(DWORD)((DWORD)uiWidthBytes *
(DWORD)height);
BYTE *pNew;
////////////////////////////////////////////////////////////
// alloc and open our new buffer
/* pNew=(BYTE *)new BYTE[dwNewsize];
if (pNew==NULL) {
return NULL;
}
*/
if (m_lpScreenBuffer==NULL || m_dwScreenMaxSize < dwNewsize)
{
if (m_lpScreenBuffer) GlobalFree (m_lpScreenBuffer);
m_lpScreenBuffer = (BYTE *)GlobalAlloc (GMEM_FIXED, dwNewsize);
m_dwScreenMaxSize = dwNewsize;
if (m_lpScreenBuffer == NULL) return NULL;
}
pNew = m_lpScreenBuffer;
////////////////////////////////////////////////////////////
// copy row-by-row
UINT uiInWidthBytes = widthPix * 3;
UINT uiCount;
for (uiCount=0;uiCount < height;uiCount++) {
BYTE * bpInAdd;
BYTE * bpOutAdd;
ULONG lInOff;
ULONG lOutOff;
lInOff=uiInWidthBytes * uiCount;
lOutOff=uiWidthBytes * uiCount;
bpInAdd= dataBuf + lInOff;
bpOutAdd= pNew + lOutOff;
memcpy(bpOutAdd,bpInAdd,uiInWidthBytes);
}
*uiOutWidthBytes=uiWidthBytes;
return pNew;
}
//
// vertically flip a buffer
// note, this operates on a buffer of widthBytes bytes, not pixels!!!
//
BOOL JpegFile::VertFlipBuf(BYTE * inbuf,
UINT widthBytes,
UINT height)
{
BYTE *tb1;
BYTE *tb2;
if (inbuf==NULL)
return FALSE;
UINT bufsize;
bufsize=widthBytes;
tb1= (BYTE *)new BYTE[bufsize];
if (tb1==NULL) {
return FALSE;
}
tb2= (BYTE *)new BYTE [bufsize];
if (tb2==NULL) {
delete [] tb1;
return FALSE;
}
UINT row_cnt;
ULONG off1=0;
ULONG off2=0;
for (row_cnt=0;row_cnt<(height+1)/2;row_cnt++) {
off1=row_cnt*bufsize;
off2=((height-1)-row_cnt)*bufsize;
memcpy(tb1,inbuf+off1,bufsize);
memcpy(tb2,inbuf+off2,bufsize);
memcpy(inbuf+off1,tb2,bufsize);
memcpy(inbuf+off2,tb1,bufsize);
}
delete [] tb1;
delete [] tb2;
return TRUE;
}
//
// swap Rs and Bs
//
// Note! this does its stuff on buffers with a whole number of pixels
// per data row!!
//
BOOL JpegFile::BGRFromRGB(BYTE *buf, UINT widthPix, UINT height)
{
if (buf==NULL)
return FALSE;
UINT col, row;
for (row=0;row<height;row++) {
for (col=0;col<widthPix;col++) {
LPBYTE pRed, pGrn, pBlu;
pRed = buf + row * widthPix * 3 + col * 3;
pGrn = buf + row * widthPix * 3 + col * 3 + 1;
pBlu = buf + row * widthPix * 3 + col * 3 + 2;
// swap red and blue
BYTE tmp;
tmp = *pRed;
*pRed = *pBlu;
*pBlu = tmp;
}
}
return TRUE;
}
//
// Note! this does its stuff on buffers with a whole number of pixels
// per data row!!
//
BOOL JpegFile::MakeGrayScale(BYTE *buf, UINT widthPix, UINT height, BOOL trun)
{
if (buf==NULL)
return FALSE;
UINT row,col;
for (row=0;row<height;row++) {
for (col=0;col<widthPix;col++) {
LPBYTE pRed, pGrn, pBlu;
pRed = buf + row * widthPix * 3 + col * 3;
pGrn = buf + row * widthPix * 3 + col * 3 + 1;
pBlu = buf + row * widthPix * 3 + col * 3 + 2;
// luminance
int lum = (int)(.299 * (double)(*pRed) + .587 * (double)(*pGrn) + .114 * (double)(*pBlu));
if (trun) lum = ~lum;
*pRed = (BYTE)lum;
*pGrn = (BYTE)lum;
*pBlu = (BYTE)lum;
}
}
return TRUE;
}
//DEL bool JpegFile::MYMOpen(CString sFile)
//DEL {
//DEL CFileException e;
//DEL MYMClose();
//DEL m_lpBuffer = new BYTE[MAX_SIZE];
//DEL if (m_lpBuffer == NULL) return false;
//DEL
//DEL if(!m_rFile.Open(sFile,CFile::typeBinary|CFile::modeRead,&e)) return false;
//DEL if(!m_rFile.Read(&m_header, sizeof(MYMHEADER))) goto err01;
//DEL if (memcmp(m_header.szNote, "MYMEDIA", 7) || memcmp(m_header.szVersion,"VERSION1.0", 10 ))
//DEL return false;
//DEL
//DEL m_bOpening = true;
//DEL m_dwPoint = 0;
//DEL m_dwFrame = 0;
//DEL return true;
//DEL
//DEL err01:
//DEL m_rFile.Close();
//DEL return false;
//DEL }
//DEL void JpegFile::MYMClose()
//DEL {
//DEL if(m_bOpening)
//DEL m_rFile.Close();
//DEL m_bOpening = false;
//DEL if(m_lpBuffer) delete m_lpBuffer;
//DEL m_lpBuffer = NULL;
//DEL m_dwPoint = 0;
//DEL m_dwFrame = 0;
//DEL
//DEL }
//DEL bool JpegFile::IsOpen()
//DEL {
//DEL return m_bOpening;
//DEL }
//DEL PMYMCELL JpegFile::GetCell()
//DEL {
//DEL return &m_cell;
//DEL }
//DEL BYTE *JpegFile::NextFrame(UINT *nBack)
//DEL {
//DEL struct jpeg_decompress_struct cinfo;
//DEL /* We use our private extension JPEG error handler.
//DEL * Note that this struct must live as long as the main JPEG parameter
//DEL * struct, to avoid dangling-pointer problems.
//DEL */
//DEL
//DEL struct my_error_mgr jerr;
//DEL /* More stuff */
//DEL FILE * infile=NULL; /* source file */
//DEL // get our buffer set to hold data
//DEL BYTE * dataBuf = NULL;
//DEL
//DEL JSAMPARRAY buffer; /* Output row buffer */
//DEL int row_stride; /* physical row width in output buffer */
//DEL char buf[250];
//DEL
//DEL if (!m_bOpening) {*nBack = -1; return NULL;}
//DEL if (m_dwFrame == m_header.dwFrameSize) {*nBack = 0; return NULL;} //已到结尾
//DEL if((m_rFile.Read(&m_cell, sizeof(MYMCELL))) != sizeof(MYMCELL))
//DEL goto err01;
//DEL if(m_rFile.Read(m_lpBuffer, m_cell.lCellSize) != m_cell.lCellSize)
//DEL goto err01;
//DEL
//DEL m_dwFrame = m_cell.dwFrameNo;
//DEL
//DEL // basic code from IJG Jpeg Code v6 example.c
//DEL
//DEL //DEL *width=0;
//DEL //DEL *height=0;
//DEL m_lWidth = 0;
//DEL m_lHeight = 0;
//DEL /* This struct contains the JPEG decompression parameters and pointers to
//DEL * working space (which is allocated as needed by the JPEG library).
//DEL */
//DEL
//DEL /* In this example we want to open the input file before doing anything else,
//DEL * so that the setjmp() error recovery below can assume the file is open.
//DEL * VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
//DEL * requires it in order to read binary files.
//DEL */
//DEL
//DEL /*****DEL
//DEL if ((infile = fopen(fileName, "rb")) == NULL) {
//DEL sprintf(buf, "JPEG :\nCan't open %s\n", fileName);
//DEL AfxMessageBox(buf);
//DEL return NULL;
//DEL }
//DEL *******/
//DEL
//DEL /* Step 1: allocate and initialize JPEG decompression object */
//DEL
//DEL /* We set up the normal JPEG error routines, then override error_exit. */
//DEL cinfo.err = jpeg_std_error(&jerr.pub);
//DEL jerr.pub.error_exit = my_error_exit;
//DEL
//DEL
//DEL /* Establish the setjmp return context for my_error_exit to use. */
//DEL if (setjmp(jerr.setjmp_buffer)) {
//DEL /* If we get here, the JPEG code has signaled an error.
//DEL * We need to clean up the JPEG object, close the input file, and return.
//DEL */
//DEL
//DEL jpeg_destroy_decompress(&cinfo);
//DEL
//DEL /*******DEL
//DEL if (infile!=NULL)