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
|
#include "main.h"
#include "writer_jpg.h"
#include "api__jpeg.h"
#include <api/memmgr/api_memmgr.h>
#include <shlwapi.h>
#include <strsafe.h>
/*BIG BIG THING TO NOTE
I have modified jmorecfg.h line 319 to specify 4 bytes per pixel with RGB. it is normally three.
*/
extern "C" {
#undef FAR
#include "jpeglib.h"
};
JpgWrite::JpgWrite() : quality(80) {}
// valid items include "quality" for jpeg files with value "0" to "100", "lossless" returns "1" if it is "0" otherwise
// return value is 1 if the config item is supported, 0 if it is not.
int JpgWrite::setConfig(const wchar_t * item, const wchar_t * value) {
if(!_wcsicmp(item,L"quality")) quality = _wtoi(value);
else return 0;
return 1;
}
int JpgWrite::getConfig(const wchar_t * item, wchar_t * value, int valuelen) {
if(!_wcsicmp(item,L"lossless")) lstrcpynW(value,L"0",valuelen);
else if(!_wcsicmp(item,L"quality")) StringCchPrintfW(value,valuelen,L"%d",quality);
else return 0;
return 1;
}
int JpgWrite::bitDepthSupported(int depth) {
if(depth == 32 || depth == 24) return 1;
return 0;
}
extern "C" {
typedef struct {
jpeg_destination_mgr pub;
BYTE *buf;
int len;
} my_destination_mgr;
void init_destination(j_compress_ptr cinfo){}
boolean empty_output_buffer(j_compress_ptr cinfo) {
my_destination_mgr* m = (my_destination_mgr*)cinfo->dest;
int used = m->len;
int d = ((m->len / 4) & 0xffffff00) + 0x100;
if(d < 4096) d = 4096;
m->len+=d;
m->buf = (BYTE*)WASABI_API_MEMMGR->sysRealloc(m->buf,m->len);
m->pub.next_output_byte = m->buf + used;
m->pub.free_in_buffer = d;
return TRUE;
}
void term_destination(j_compress_ptr cinfo){}
};
// returns the image in our format, free the returned buffer with api_memmgr::sysFree()
void * JpgWrite::convert(const void *pixels, int bitDepth, int w, int h, int *length) {
if(bitDepth != 32 && bitDepth != 24) return 0;
jpeg_compress_struct cinfo={0};
jpeg_error_mgr jerr;
cinfo.err = jpeg_std_error(&jerr);
jpeg_create_compress(&cinfo);
// a guess at the final size...
int allocsize = (int(double(w*h)*0.2) & 0xffffff00) + 0x100;
if (allocsize < 4096) allocsize = 4096;
// set up our output stream
my_destination_mgr dest = {{0,(size_t)allocsize,init_destination,empty_output_buffer,term_destination},0,allocsize};
dest.buf = (BYTE*)WASABI_API_MEMMGR->sysMalloc(allocsize);
dest.pub.next_output_byte = dest.buf;
cinfo.dest = (jpeg_destination_mgr*)&dest;
// image parameters
cinfo.image_width = w;
cinfo.image_height = h;
cinfo.input_components = 4;
cinfo.in_color_space = JCS_RGB;
jpeg_set_defaults(&cinfo);
jpeg_set_quality(&cinfo, quality, TRUE /* limit to baseline-JPEG values */);
jpeg_start_compress(&cinfo, TRUE);
int row_stride = w * 4;
BYTE * scanline = (BYTE *)malloc(row_stride);
if(bitDepth == 32) {
const ARGB32 * p = ((const ARGB32*)pixels);// + (h * w);
while (cinfo.next_scanline < cinfo.image_height) {
//p-=w;
memcpy(scanline,p,row_stride);
for(unsigned int i=0; i < cinfo.image_width; i++)
((ARGB32*)scanline)[i] = ((p[i] & 0x0000ff) << 16) | (p[i] & 0x00ff00) | ((p[i] & 0xff0000) >> 16);
jpeg_write_scanlines(&cinfo, &scanline, 1);
p+=w;
}
} else if(bitDepth == 24) { // FUCKO: untested
const BYTE * p = ((const BYTE*)pixels);// + (h * w * 3);
while (cinfo.next_scanline < cinfo.image_height) {
//p-=w*3;
memcpy(scanline,p,row_stride);
int l = cinfo.image_width * 4;
for(int i=0,j=0; j < l; i+=3,j+=4) {
scanline[j] = p[i+2];
scanline[j+1] = p[i+1];
scanline[j+2] = p[i];
}
jpeg_write_scanlines(&cinfo, &scanline, 1);
p+=w*3;
}
}
free(scanline);
jpeg_finish_compress(&cinfo);
if(length) *length = int(dest.len - dest.pub.free_in_buffer);
jpeg_destroy_compress(&cinfo);
return dest.buf;
}
#define CBCLASS JpgWrite
START_DISPATCH;
CB(GETIMAGETYPENAME, getImageTypeName);
CB(GETEXTENSIONS, getExtensions);
CB(SETCONFIG, setConfig);
CB(GETCONFIG, getConfig);
CB(BITDEPTHSUPPORTED, bitDepthSupported);
CB(CONVERT, convert);
END_DISPATCH;
#undef CBCLASS
|