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
|
// This library is distributed under the conditions of the GNU LGPL.
#include "config.h"
#ifdef HAVE_OPENJPEG
#include <unistd.h>
#include "jp2.h"
#if !defined(__STDC_LIMIT_MACROS)
#define __STDC_LIMIT_MACROS
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include <openjpeg.h>
#include <kdebug.h>
#include <tdeglobal.h>
#include <tdetempfile.h>
#include <tqcolor.h>
#include <tqcstring.h>
#include <tqfile.h>
#include <tqimage.h>
#include <tqmemarray.h>
/*
* JPEG-2000 Plugin for KImageIO.
*
* Current limitations:
* - Only reads sRGB/Grayscale images (doesn't convert colorspace).
* - Doesn't support writing images.
* - Doesn't support OPJ_CODEC_J2K.
* - Doesn't support subsampling.
* - Doesn't read ICC profiles.
*
* The API documentation is rather poor, so good references on how to use OpenJPEG
* are the tools provided by OpenJPEG, such as 'opj_decompress':
* https://github.com/uclouvain/openjpeg/blob/master/src/bin/jp2/opj_decompress.c
* https://github.com/uclouvain/openjpeg/blob/master/src/bin/jp2/opj_compress.c
*/
// kdDebug category
constexpr int kCategory = 399;
struct KIMGJP2Wrapper
{
public:
opj_codec_t *codec { nullptr };
opj_image_t *image { nullptr };
opj_stream_t *stream { nullptr };
KTempFile tempFile;
~KIMGJP2Wrapper()
{
if (stream)
{
opj_stream_destroy(stream);
}
if (image)
{
opj_image_destroy(image);
}
if (codec)
{
opj_destroy_codec(codec);
}
}
};
static void kimgio_jp2_err_handler(const char *message, void *data)
{
kdError(kCategory) << "Error decoding JP2 image: " << message;
}
static void kimgio_jp2_info_handler(const char *message, void *data)
{
// Reports status, e.g.: Main header has been correctly decoded.
// kdDebug(kCategory) << "JP2 decoding message: " << message;
}
static void kimgio_jp2_warn_handler(const char *message, void *data)
{
kdWarning(kCategory) << "Warning decoding JP2 image: " << message;
}
static void kimgio_jp2_read_image(TQImage &image, const KIMGJP2Wrapper &jp2)
{
const int height = image.height();
const int width = image.width();
unsigned char alphaMask = 0x0;
for (int row = 0; row < height; row++)
{
for (int col = 0; col < width; col++)
{
const int offset = row * width + col;
uint8_t rgba[4] = { 0x00, 0x00, 0x00, 0xFF };
for (int comp = 0; comp < jp2.image->numcomps; comp++)
{
OPJ_INT32 value = jp2.image->comps[comp].data[offset];
value += (jp2.image->comps[comp].sgnd ? (1 << jp2.image->comps[comp].prec - 1) : 0);
value = kClamp(value, 0, 255);
switch (comp)
{
case 0:
{
// Red or Grayscale
rgba[0] = value;
rgba[1] = value;
rgba[2] = value;
break;
}
case 1:
{
if ((jp2.image->color_space == OPJ_CLRSPC_GRAY) &&
(jp2.image->comps[comp].alpha != 0))
{
// Grayscale with Alpha
rgba[3] = value;
}
else
{
// Green
rgba[1] = value;
}
break;
}
case 2:
{
// Blue
rgba[2] = value;
break;
}
case 3:
{
// Alpha?
if (jp2.image->comps[comp].alpha != 0)
{
rgba[3] = value;
}
break;
}
default:
{
break;
}
}
}
image.setPixel(col, row, tqRgba(rgba[0], rgba[1], rgba[2], rgba[3]));
alphaMask |= (255 - rgba[3]);
}
}
if (alphaMask != 0x0)
{
image.setAlphaBuffer(true);
}
}
static const char *colorspaceToString(COLOR_SPACE clr)
{
switch (clr)
{
case OPJ_CLRSPC_SRGB:
{
return "sRGB";
}
case OPJ_CLRSPC_GRAY:
{
return "sRGB Grayscale";
}
case OPJ_CLRSPC_SYCC:
{
return "YUV";
}
case OPJ_CLRSPC_EYCC:
{
return "YCbCr";
}
case OPJ_CLRSPC_CMYK:
{
return "CMYK";
}
case OPJ_CLRSPC_UNSPECIFIED:
{
return "Unspecified";
}
default:
{
return "Unknown";
}
}
}
TDE_EXPORT void kimgio_jp2_read(TQImageIO* io)
{
KIMGJP2Wrapper jp2;
opj_dparameters_t parameters;
if (auto tqfile = dynamic_cast<TQFile *>(io->ioDevice()))
{
jp2.stream = opj_stream_create_default_file_stream(tqfile->name().local8Bit().data(), OPJ_TRUE);
}
else
{
// 4096 (=4k) is a common page size.
constexpr int pageSize = 4096;
// Use a temporary file, since TQSocket::size() reports bytes
// available to read *now*, not the file size.
if (jp2.tempFile.status() != 0)
{
kdError(kCategory) << "Failed to create temporary file for non-TQFile IO" << endl;
return;
}
jp2.tempFile.setAutoDelete(true);
TQFile *tempFile = jp2.tempFile.file();
TQByteArray b(pageSize);
TQ_LONG bytesRead;
// 0 or -1 is EOF / error
while ((bytesRead = io->ioDevice()->readBlock(b.data(), pageSize)) > 0)
{
if ((tempFile->writeBlock(b.data(), bytesRead)) == -1)
{
break;
}
}
// flush everything out to disk
tempFile->flush();
jp2.stream = opj_stream_create_default_file_stream(tempFile->name().local8Bit().data(), OPJ_TRUE);
}
if (nullptr == jp2.stream)
{
kdError(kCategory) << "Failed to create input stream for JP2" << endl;
io->setStatus(IO_ResourceError);
return;
}
jp2.codec = opj_create_decompress(OPJ_CODEC_JP2);
if (nullptr == jp2.codec)
{
kdError(kCategory) << "Unable to create decompressor for JP2" << endl;
io->setStatus(IO_ResourceError);
return;
}
opj_set_error_handler(jp2.codec, kimgio_jp2_err_handler, nullptr);
opj_set_info_handler(jp2.codec, kimgio_jp2_info_handler, nullptr);
opj_set_warning_handler(jp2.codec, kimgio_jp2_warn_handler, nullptr);
opj_set_default_decoder_parameters(¶meters);
if (OPJ_FALSE == opj_setup_decoder(jp2.codec, ¶meters))
{
kdError(kCategory) << "Failed to setup decoder for JP2" << endl;
io->setStatus(IO_ResourceError);
return;
}
if (OPJ_FALSE == opj_read_header(jp2.stream, jp2.codec, &jp2.image))
{
kdError(kCategory) << "Failed to read JP2 header" << endl;
io->setStatus(IO_ReadError);
return;
}
if (OPJ_FALSE == opj_decode(jp2.codec, jp2.stream, jp2.image))
{
kdError(kCategory) << "Failed to decode JP2 image" << endl;
io->setStatus(IO_ReadError);
return;
}
if (OPJ_FALSE == opj_end_decompress(jp2.codec, jp2.stream))
{
kdError(kCategory) << "Failed to decode JP2 image ending" << endl;
io->setStatus(IO_ReadError);
return;
}
OPJ_UINT32 width = jp2.image->x1 - jp2.image->x0;
OPJ_UINT32 height = jp2.image->y1 - jp2.image->y0;
TQImage image(width, height, 32);
switch (jp2.image->color_space)
{
case OPJ_CLRSPC_SRGB:
case OPJ_CLRSPC_GRAY:
{
kimgio_jp2_read_image(image, jp2);
break;
}
default:
{
kdError(kCategory) << "Unsupported colorspace detected: "
<< colorspaceToString(jp2.image->color_space)
<< endl;
io->setStatus(IO_ReadError);
return;
}
}
io->setImage(image);
io->setStatus(IO_Ok);
}
static void kimgio_jp2_write_handler(void *buffer, OPJ_SIZE_T buffer_size, void *user_data)
{
// TODO(mio):
}
TDE_EXPORT void kimgio_jp2_write(TQImageIO *io)
{
kdDebug(kCategory) << "Writing JP2 with OpenJPEG is not supported yet." << endl;
}
/*
#define DEFAULT_RATE 0.10
#define MAXCMPTS 256
typedef struct {
jas_image_t* image;
int cmptlut[MAXCMPTS];
jas_image_t* altimage;
} gs_t;
jas_image_t*
read_image( const TQImageIO* io )
{
jas_stream_t* in = 0;
// for TQIODevice's other than TQFile, a temp. file is used.
KTempFile* tempf = 0;
TQFile* qf = 0;
if( ( qf = dynamic_cast<TQFile*>( io->ioDevice() ) ) ) {
// great, it's a TQFile. Let's just take the filename.
in = jas_stream_fopen( TQFile::encodeName( qf->name() ), "rb" );
} else {
// not a TQFile. Copy the whole data to a temp. file.
tempf = new KTempFile();
if( tempf->status() != 0 ) {
delete tempf;
return 0;
} // if
tempf->setAutoDelete( true );
TQFile* out = tempf->file();
// 4096 (=4k) is a common page size.
TQByteArray b( 4096 );
TQ_LONG size;
// 0 or -1 is EOF / error
while( ( size = io->ioDevice()->readBlock( b.data(), 4096 ) ) > 0 ) {
// in case of a write error, still give the decoder a try
if( ( out->writeBlock( b.data(), size ) ) == -1 ) break;
} // while
// flush everything out to disk
out->flush();
in = jas_stream_fopen( TQFile::encodeName( tempf->name() ), "rb" );
} // else
if( !in ) {
delete tempf;
return 0;
} // if
jas_image_t* image = jas_image_decode( in, -1, 0 );
jas_stream_close( in );
delete tempf;
// image may be 0, but that's Ok
return image;
} // read_image
static bool
convert_colorspace( gs_t& gs )
{
jas_cmprof_t *outprof = jas_cmprof_createfromclrspc( JAS_CLRSPC_SRGB );
if( !outprof ) return false;
gs.altimage = jas_image_chclrspc( gs.image, outprof,
JAS_CMXFORM_INTENT_PER );
if( !gs.altimage ) return false;
return true;
} // convert_colorspace
static bool
render_view( gs_t& gs, TQImage& qti )
{
if((gs.cmptlut[0] = jas_image_getcmptbytype(gs.altimage,
JAS_IMAGE_CT_COLOR(JAS_CLRSPC_CHANIND_RGB_R))) < 0 ||
(gs.cmptlut[1] = jas_image_getcmptbytype(gs.altimage,
JAS_IMAGE_CT_COLOR(JAS_CLRSPC_CHANIND_RGB_G))) < 0 ||
(gs.cmptlut[2] = jas_image_getcmptbytype(gs.altimage,
JAS_IMAGE_CT_COLOR(JAS_CLRSPC_CHANIND_RGB_B))) < 0) {
return false;
} // if
const int* cmptlut = gs.cmptlut;
int v[3];
// check that all components have the same size.
const int width = jas_image_cmptwidth( gs.altimage, cmptlut[0] );
const int height = jas_image_cmptheight( gs.altimage, cmptlut[0] );
for( int i = 1; i < 3; ++i ) {
if (jas_image_cmptwidth( gs.altimage, cmptlut[i] ) != width ||
jas_image_cmptheight( gs.altimage, cmptlut[i] ) != height)
return false;
} // for
if( !qti.create( jas_image_width( gs.altimage ),
jas_image_height( gs.altimage ), 32 ) )
return false;
uint32_t* data = (uint32_t*)qti.bits();
for( int y = 0; y < height; ++y ) {
for( int x = 0; x < width; ++x ) {
for( int k = 0; k < 3; ++k ) {
v[k] = jas_image_readcmptsample( gs.altimage, cmptlut[k], x, y );
// if the precision of the component is too small, increase
// it to use the complete value range.
v[k] <<= 8 - jas_image_cmptprec( gs.altimage, cmptlut[k] );
if( v[k] < 0 ) v[k] = 0;
else if( v[k] > 255 ) v[k] = 255;
} // for k
*data++ = tqRgb( v[0], v[1], v[2] );
} // for x
} // for y
return true;
} // render_view
TDE_EXPORT void
kimgio_jp2_read( TQImageIO* io )
{
if( jas_init() ) return;
gs_t gs;
if( !(gs.image = read_image( io )) ) return;
if( !convert_colorspace( gs ) ) return;
TQImage image;
render_view( gs, image );
if( gs.image ) jas_image_destroy( gs.image );
if( gs.altimage ) jas_image_destroy( gs.altimage );
io->setImage( image );
io->setStatus( 0 );
} // kimgio_jp2_read
static jas_image_t*
create_image( const TQImage& qi )
{
// prepare the component parameters
jas_image_cmptparm_t* cmptparms = new jas_image_cmptparm_t[ 3 ];
for ( int i = 0; i < 3; ++i ) {
// x and y offset
cmptparms[i].tlx = 0;
cmptparms[i].tly = 0;
// the resulting image will be hstep*width x vstep*height !
cmptparms[i].hstep = 1;
cmptparms[i].vstep = 1;
cmptparms[i].width = qi.width();
cmptparms[i].height = qi.height();
// we write everything as 24bit truecolor ATM
cmptparms[i].prec = 8;
cmptparms[i].sgnd = false;
}
jas_image_t* ji = jas_image_create( 3 /* number components *//*, cmptparms, JAS_CLRSPC_UNKNOWN );
delete[] cmptparms;
// returning 0 is ok
return ji;
} // create_image
static bool
write_components( jas_image_t* ji, const TQImage& qi )
{
const unsigned height = qi.height();
const unsigned width = qi.width();
jas_matrix_t* m = jas_matrix_create( height, width );
if( !m ) return false;
jas_image_setclrspc( ji, JAS_CLRSPC_SRGB );
jas_image_setcmpttype( ji, 0, JAS_IMAGE_CT_RGB_R );
for( uint y = 0; y < height; ++y )
for( uint x = 0; x < width; ++x )
jas_matrix_set( m, y, x, tqRed( qi.pixel( x, y ) ) );
jas_image_writecmpt( ji, 0, 0, 0, width, height, m );
jas_image_setcmpttype( ji, 1, JAS_IMAGE_CT_RGB_G );
for( uint y = 0; y < height; ++y )
for( uint x = 0; x < width; ++x )
jas_matrix_set( m, y, x, tqGreen( qi.pixel( x, y ) ) );
jas_image_writecmpt( ji, 1, 0, 0, width, height, m );
jas_image_setcmpttype( ji, 2, JAS_IMAGE_CT_RGB_B );
for( uint y = 0; y < height; ++y )
for( uint x = 0; x < width; ++x )
jas_matrix_set( m, y, x, tqBlue( qi.pixel( x, y ) ) );
jas_image_writecmpt( ji, 2, 0, 0, width, height, m );
jas_matrix_destroy( m );
return true;
} // write_components
TDE_EXPORT void
kimgio_jp2_write( TQImageIO* io )
{
if( jas_init() ) return;
// open the stream. we write directly to the file if possible, to a
// temporary file otherwise.
jas_stream_t* stream = 0;
TQFile* qf = 0;
KTempFile* ktempf = 0;
if( ( qf = dynamic_cast<TQFile*>( io->ioDevice() ) ) ) {
// jas_stream_fdopen works here, but not when reading...
stream = jas_stream_fdopen( dup( qf->handle() ), "w" );
} else {
ktempf = new KTempFile;
ktempf->setAutoDelete( true );
stream = jas_stream_fdopen( dup( ktempf->handle()), "w" );
} // else
// by here, a jas_stream_t is open
if( !stream ) return;
jas_image_t* ji = create_image( io->image() );
if( !ji ) {
delete ktempf;
jas_stream_close( stream );
return;
} // if
if( !write_components( ji, io->image() ) ) {
delete ktempf;
jas_stream_close( stream );
jas_image_destroy( ji );
return;
} // if
// optstr:
// - rate=#B => the resulting file size is about # bytes
// - rate=0.0 .. 1.0 => the resulting file size is about the factor times
// the uncompressed size
TQString rate;
TQTextStream ts( &rate, IO_WriteOnly );
ts << "rate="
<< ( (io->quality() < 0) ? DEFAULT_RATE : io->quality() / 100.0F );
# if defined(JAS_VERSION_MAJOR) && (JAS_VERSION_MAJOR >= 3)
const jas_image_fmtinfo_t *jp2_fmtinfo = jas_image_lookupfmtbyname("jp2");
int i = -1;
if (jp2_fmtinfo)
{
i = jas_image_encode(ji, stream, jp2_fmtinfo->id, rate.utf8().data());
}
# else
int i = jp2_encode( ji, stream, rate.utf8().data() );
# endif
jas_image_destroy( ji );
jas_stream_close( stream );
if( i != 0 ) { delete ktempf; return; }
if( ktempf ) {
// We've written to a tempfile. Copy the data to the final destination.
TQFile* in = ktempf->file();
TQByteArray b( 4096 );
TQ_LONG size;
// seek to the beginning of the file.
if( !in->at( 0 ) ) { delete ktempf; return; }
// 0 or -1 is EOF / error
while( ( size = in->readBlock( b.data(), 4096 ) ) > 0 ) {
if( ( io->ioDevice()->writeBlock( b.data(), size ) ) == -1 ) {
delete ktempf;
return;
} // if
} // while
io->ioDevice()->flush();
delete ktempf;
// see if we've left the while loop due to an error.
if( size == -1 ) return;
} // if
// everything went fine
io->setStatus( IO_Ok );
} // kimgio_jp2_write
*/
#endif // HAVE_OPENJPEG
|