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
|
#include <fitz.h>
/* TODO: bpc */
/*
* We use the Jasper JPEG2000 coder for now.
*/
#include <jasper/jasper.h>
static char *colorspacename(jas_clrspc_t clrspc)
{
switch (jas_clrspc_fam(clrspc))
{
case JAS_CLRSPC_FAM_UNKNOWN: return "Unknown";
case JAS_CLRSPC_FAM_XYZ: return "XYZ";
case JAS_CLRSPC_FAM_LAB: return "Lab";
case JAS_CLRSPC_FAM_GRAY: return "Gray";
case JAS_CLRSPC_FAM_RGB: return "RGB";
case JAS_CLRSPC_FAM_YCBCR: return "YCbCr";
}
return "Unknown";
}
typedef struct fz_jpxd_s fz_jpxd;
struct fz_jpxd_s
{
fz_filter super;
jas_stream_t *stream;
jas_image_t *image;
int offset;
int stage;
};
fz_error *
fz_newjpxd(fz_filter **fp, fz_obj *params)
{
int err;
FZ_NEWFILTER(fz_jpxd, d, jpxd);
err = jas_init();
if (err) {
fz_free(d);
return fz_throw("ioerror in jpxd: jas_init()");
}
d->stream = jas_stream_memopen(nil, 0);
if (!d->stream) {
fz_free(d);
return fz_throw("ioerror in jpxd: jas_stream_memopen()");
}
d->image = nil;
d->offset = 0;
d->stage = 0;
return nil;
}
void
fz_freejpxd(fz_filter *filter)
{
fz_jpxd *d = (fz_jpxd*)filter;
if (d->stream) jas_stream_close(d->stream);
if (d->image) jas_image_destroy(d->image);
fz_free(d);
}
fz_error *
fz_processjpxd(fz_filter *filter, fz_buffer *in, fz_buffer *out)
{
fz_jpxd *d = (fz_jpxd*)filter;
int n, bpc, w, h;
int i, x, y;
switch (d->stage)
{
case 0: goto input;
case 1: goto decode;
case 2: goto output;
}
input:
while (in->rp < in->wp) {
n = jas_stream_write(d->stream, in->rp, in->wp - in->rp);
in->rp += n;
}
if (!in->eof)
return fz_ioneedin;
d->stage = 1;
decode:
jas_stream_seek(d->stream, 0, 0);
d->image = jas_image_decode(d->stream, -1, 0);
if (!d->image)
return fz_throw("ioerror in jpxd: unable to decode image data");
fprintf(stderr, "P%c\n# JPX %d x %d n=%d bpc=%d colorspace=%04x %s\n%d %d\n%d\n",
jas_image_numcmpts(d->image) == 1 ? '5' : '6',
jas_image_width(d->image),
jas_image_height(d->image),
jas_image_numcmpts(d->image),
jas_image_cmptprec(d->image, 0),
jas_image_clrspc(d->image),
colorspacename(jas_image_clrspc(d->image)),
jas_image_width(d->image),
jas_image_height(d->image),
(1 << jas_image_cmptprec(d->image, 0)) - 1);
d->stage = 2;
output:
w = jas_image_width(d->image);
h = jas_image_height(d->image);
n = jas_image_numcmpts(d->image);
bpc = jas_image_cmptprec(d->image, 0); /* use precision of first component for all... */
while (d->offset < w * h)
{
y = d->offset / w;
x = d->offset - y * w;
/* FIXME bpc != 8 */
if (out->wp + n >= out->ep)
return fz_ioneedout;
for (i = 0; i < n; i++)
*out->wp++ = jas_image_readcmptsample(d->image, i, x, y);
d->offset ++;
}
out->eof = 1;
return fz_iodone;
}
|