JPEGReader.st
author Claus Gittinger <cg@exept.de>
Tue, 26 Feb 2002 14:03:27 +0100
changeset 1558 1ae43779327f
parent 1094 b861869852b5
child 1698 0512e160a112
permissions -rw-r--r--
#valueNowOrOnUnwindDo: -> #ensure:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
4ac87e6bf82f *** empty log message ***
claus
parents: 2
diff changeset
     1
"
4ac87e6bf82f *** empty log message ***
claus
parents: 2
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
28
8daff0234d2e *** empty log message ***
claus
parents: 23
diff changeset
     3
	      All Rights Reserved
6
4ac87e6bf82f *** empty log message ***
claus
parents: 2
diff changeset
     4
4ac87e6bf82f *** empty log message ***
claus
parents: 2
diff changeset
     5
 This software is furnished under a license and may be used
4ac87e6bf82f *** empty log message ***
claus
parents: 2
diff changeset
     6
 only in accordance with the terms of that license and with the
4ac87e6bf82f *** empty log message ***
claus
parents: 2
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
4ac87e6bf82f *** empty log message ***
claus
parents: 2
diff changeset
     8
 be provided or otherwise made available to, or used by, any
4ac87e6bf82f *** empty log message ***
claus
parents: 2
diff changeset
     9
 other person.  No title to or ownership of the software is
4ac87e6bf82f *** empty log message ***
claus
parents: 2
diff changeset
    10
 hereby transferred.
4ac87e6bf82f *** empty log message ***
claus
parents: 2
diff changeset
    11
"
4ac87e6bf82f *** empty log message ***
claus
parents: 2
diff changeset
    12
1558
1ae43779327f #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 1094
diff changeset
    13
"{ Package: 'stx:libview2' }"
1ae43779327f #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 1094
diff changeset
    14
2
842b6a603cdc Initial revision
claus
parents:
diff changeset
    15
ImageReader subclass:#JPEGReader
537
2d96caf2536d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 536
diff changeset
    16
	instanceVariableNames:'jpeg_decompress_struct jpeg_error_mgr_struct colorComponents
2d96caf2536d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 536
diff changeset
    17
		forceGrayscale forceDitherMode'
576
4b81823c3fc6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 542
diff changeset
    18
	classVariableNames:'ErrorPrinting'
199
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    19
	poolDictionaries:''
259
62b1bbafd9ba category change
Claus Gittinger <cg@exept.de>
parents: 234
diff changeset
    20
	category:'Graphics-Images-Support'
2
842b6a603cdc Initial revision
claus
parents:
diff changeset
    21
!
842b6a603cdc Initial revision
claus
parents:
diff changeset
    22
522
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
    23
!JPEGReader primitiveDefinitions!
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
    24
%{
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
    25
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
    26
/*
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
    27
 * includes, defines, structure definitions
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
    28
 * and typedefs come here.
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
    29
 */
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
    30
1083
707e5156278e changes for egcs (__new in stdio.h)
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
    31
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    32
#include <stdio.h>
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    33
542
5eeab29c23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
    34
#ifdef sunos
5eeab29c23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
    35
# include <sys/types.h>
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    36
#endif
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    37
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    38
#ifdef WIN32
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    39
# undef longjmp
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    40
# undef setjmp
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    41
#endif
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    42
542
5eeab29c23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
    43
#include <jpeglib.h>
5eeab29c23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
    44
#include <jerror.h>
5eeab29c23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
    45
1083
707e5156278e changes for egcs (__new in stdio.h)
Claus Gittinger <cg@exept.de>
parents: 1080
diff changeset
    46
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    47
struct my_error_mgr {
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    48
	struct jpeg_error_mgr pub;
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    49
	jmp_buf setjmp_buffer;
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    50
};
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    51
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    52
%}
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    53
! !
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    54
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    55
!JPEGReader primitiveFunctions!
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    56
%{
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    57
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    58
/*
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    59
 * any local C (helper) functions
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    60
 * come here (please, define as static)
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    61
 */
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    62
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    63
static
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    64
my_error_exit(cinfo)
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    65
    j_common_ptr cinfo;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    66
{
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    67
    struct my_error_mgr *myerrPtr = (struct my_error_mgr *) cinfo->err;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    68
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    69
    if (@global(ErrorPrinting) == true) {
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    70
	fprintf(stderr, "JPEGReader [warning]: jpeg error\n");
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    71
    }
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    72
    longjmp(myerrPtr->setjmp_buffer, 1);
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    73
}
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    74
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    75
static
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    76
my_output_message(cinfo)
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    77
    j_common_ptr cinfo;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    78
{
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    79
    char buffer[JMSG_LENGTH_MAX];
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    80
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    81
    if (@global(ErrorPrinting) == true) {
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    82
	fprintf(stderr, "libJPEG [error]: ");
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    83
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    84
       /* Create the message */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    85
       (*cinfo->err->format_message) (cinfo, buffer);
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    86
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    87
       /* Send it to stderr, adding a newline */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    88
       fprintf(stderr, "%s\n", buffer);
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    89
    }
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    90
}
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    91
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    92
/*
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    93
 * Optional progress monitor: display a percent-done figure on stderr.
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    94
 */
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    95
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    96
#ifdef PROGRESS_REPORT
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    97
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    98
void
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
    99
JPG_progress_monitor (j_common_ptr cinfo)
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   100
{
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   101
  cd_progress_ptr prog = (cd_progress_ptr) cinfo->progress;
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   102
  int total_passes = prog->pub.total_passes + prog->total_extra_passes;
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   103
  int percent_done = (int) (prog->pub.pass_counter*100L/prog->pub.pass_limit);
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   104
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   105
  if (percent_done != prog->percent_done) {
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   106
    prog->percent_done = percent_done;
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   107
    if (total_passes > 1) {
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   108
      fprintf(stderr, "\rPass %d/%d: %3d%% ",
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   109
	      prog->pub.completed_passes + prog->completed_extra_passes + 1,
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   110
	      total_passes, percent_done);
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   111
    } else {
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   112
      fprintf(stderr, "\r %3d%% ", percent_done);
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   113
    }
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   114
    fflush(stderr);
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   115
  }
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   116
}
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   117
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   118
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   119
void
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   120
JPG_start_progress_monitor (j_common_ptr cinfo, cd_progress_ptr progress)
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   121
{
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   122
  /* Enable progress display, unless trace output is on */
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   123
  if (cinfo->err->trace_level == 0) {
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   124
    progress->pub.progress_monitor = progress_monitor;
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   125
    progress->completed_extra_passes = 0;
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   126
    progress->total_extra_passes = 0;
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   127
    progress->percent_done = -1;
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   128
    cinfo->progress = &progress->pub;
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   129
  }
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   130
}
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   131
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   132
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   133
void
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   134
JPG_end_progress_monitor (j_common_ptr cinfo)
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   135
{
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   136
  /* Clear away progress display */
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   137
  if (cinfo->err->trace_level == 0) {
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   138
    fprintf(stderr, "\r                \r");
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   139
    fflush(stderr);
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   140
  }
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   141
}
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   142
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   143
#endif
522
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   144
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   145
%}
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   146
! !
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   147
21
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   148
!JPEGReader class methodsFor:'documentation'!
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   149
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   150
copyright
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   151
"
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   152
 COPYRIGHT (c) 1993 by Claus Gittinger
28
8daff0234d2e *** empty log message ***
claus
parents: 23
diff changeset
   153
	      All Rights Reserved
16
42d4754a035f *** empty log message ***
claus
parents: 6
diff changeset
   154
21
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   155
 This software is furnished under a license and may be used
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   156
 only in accordance with the terms of that license and with the
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   157
 inclusion of the above copyright notice.   This software may not
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   158
 be provided or otherwise made available to, or used by, any
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   159
 other person.  No title to or ownership of the software is
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   160
 hereby transferred.
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   161
"
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   162
!
16
42d4754a035f *** empty log message ***
claus
parents: 6
diff changeset
   163
21
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   164
documentation
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   165
"
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   166
    Reader for JPEG images.
199
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   167
532
66aa3109df17 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   168
    This uses the libpeg library to read the image
199
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   169
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   170
    Only reading of files is supported.
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   171
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   172
    [See also:]
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   173
	Image Form Icon
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   174
	BlitImageReader FaceReader GIFReader PBMReader PCXReader 
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   175
	ST80FormReader SunRasterReader TargaReader TIFFReader WindowsIconReader 
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   176
	XBMReader XPMReader XWDReader 
21
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   177
"
66b31c91177f *** empty log message ***
claus
parents: 16
diff changeset
   178
! !
16
42d4754a035f *** empty log message ***
claus
parents: 6
diff changeset
   179
28
8daff0234d2e *** empty log message ***
claus
parents: 23
diff changeset
   180
!JPEGReader class methodsFor:'initialization'!
8daff0234d2e *** empty log message ***
claus
parents: 23
diff changeset
   181
8daff0234d2e *** empty log message ***
claus
parents: 23
diff changeset
   182
initialize
199
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   183
    "install myself in the Image classes fileFormat table
398
aef700d15416 new suffix-table
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
   184
     for the `.jpg' and '.jpeg' extensions."
199
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   185
647
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
   186
    MIMETypes defineImageType:'image/jpeg' suffix:'jpg'  reader:self.
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
   187
    MIMETypes defineImageType:nil          suffix:'jpeg' reader:self.
199
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   188
398
aef700d15416 new suffix-table
Claus Gittinger <cg@exept.de>
parents: 306
diff changeset
   189
    "Modified: 1.2.1997 / 15:01:55 / cg"
28
8daff0234d2e *** empty log message ***
claus
parents: 23
diff changeset
   190
! !
8daff0234d2e *** empty log message ***
claus
parents: 23
diff changeset
   191
522
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   192
!JPEGReader class methodsFor:'testing'!
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   193
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   194
isValidImageFile:aFileName
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   195
    "return true, if aFileName contains a JPG image.
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   196
     Only look at the files name here ..."
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   197
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   198
    (aFileName asLowercase endsWith:'.jpg') ifTrue:[^ true].
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   199
    (aFileName asLowercase endsWith:'.jpeg') ifTrue:[^ true].
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   200
    ^ false
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   201
93a9f3a8caae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
   202
    "Created: 11.4.1997 / 16:26:25 / cg"
2
842b6a603cdc Initial revision
claus
parents:
diff changeset
   203
! !
199
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   204
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   205
!JPEGReader methodsFor:'accessing'!
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   206
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   207
forceDitherMode:something
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   208
    "set the dither mode, to one of #none or #ordered"
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   209
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   210
    forceDitherMode := something.
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   211
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   212
    "Modified: 16.4.1997 / 20:34:59 / cg"
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   213
!
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   214
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   215
forceGrayscale:something
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   216
    "set the forceGrayscale mode; if true, grayScale images are
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   217
     returned, even if the input contains a color image."
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   218
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   219
    forceGrayscale := something.
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   220
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   221
    "Created: 16.4.1997 / 20:33:44 / cg"
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   222
    "Modified: 16.4.1997 / 20:34:29 / cg"
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   223
! !
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   224
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   225
!JPEGReader methodsFor:'private'!
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   226
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   227
create_jpeg_decompress_struct
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   228
    |errMgrStructSize decompressStructSize fp errorOccurred|
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   229
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   230
    fp := inStream filePointer.
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   231
    fp isNil ifTrue:[
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   232
	self error:'can only read from an external stream'.
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   233
	^ self.
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   234
    ].
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   235
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   236
%{
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   237
    errMgrStructSize = __MKSMALLINT(sizeof(struct my_error_mgr));
532
66aa3109df17 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   238
    decompressStructSize = __MKSMALLINT(sizeof(struct jpeg_decompress_struct));
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   239
%}.
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   240
532
66aa3109df17 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   241
    jpeg_error_mgr_struct := ExternalBytes unprotectedNew:errMgrStructSize.
66aa3109df17 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   242
    jpeg_decompress_struct := ExternalBytes unprotectedNew:decompressStructSize.
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   243
    errorOccurred := false.
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   244
1080
3be38bb2d33c declared stack for jpeg functions (they seem to need some)
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
   245
%{  /* STACK: 200000 */
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   246
    struct jpeg_decompress_struct *cinfoPtr;
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   247
    struct my_error_mgr *jerrPtr;
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   248
    OBJ j_e_m = __INST(jpeg_error_mgr_struct);
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   249
    OBJ j_d_s = __INST(jpeg_decompress_struct);
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   250
    FILE *f = __FILEVal(fp);
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   251
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   252
    if (__isExternalBytes(j_d_s)
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   253
     && __isExternalBytes(j_e_m)) {
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   254
	cinfoPtr = (struct jpeg_decompress_struct *)(__externalBytesAddress(j_d_s));
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   255
	jerrPtr = (struct my_error_mgr *)(__externalBytesAddress(j_e_m));
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   256
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   257
	/* 
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   258
	 * Initialize the JPEG decompression object with default error handling.
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   259
	 */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   260
	cinfoPtr->err = jpeg_std_error(jerrPtr);
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   261
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   262
	/*
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   263
	 * prepare to handle errors smoothly ...
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   264
	 */
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   265
	jerrPtr->pub.error_exit = my_error_exit;
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   266
	if (setjmp(jerrPtr->setjmp_buffer)) {
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   267
	    /* 
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   268
	     * error occurred ...
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   269
	     */
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   270
	    jpeg_destroy_decompress(cinfoPtr);
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   271
	    RETURN (false);
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   272
	}
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   273
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   274
       /*
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   275
        * use my message print function
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   276
        */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   277
       jerrPtr->pub.output_message = my_output_message;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   278
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   279
	jpeg_create_decompress(cinfoPtr);
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   280
#if 0
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   281
	/* 
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   282
	 * Insert custom COM marker processor.
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   283
	 */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   284
	jpeg_set_marker_processor(cinfoPtr, JPEG_COM, COM_handler);
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   285
#endif
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   286
	cinfoPtr->err->trace_level = 0;
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   287
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   288
#if 0
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   289
	/* colors setting */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   290
	cinfoPtr->desired_number_of_colors = val;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   291
	cinfoPtr->quantize_colors = TRUE;
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   292
#endif
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   293
#if 0
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   294
	/* dct setting */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   295
	cinfoPtr->dct_method = JDCT_ISLOW;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   296
	or: cinfoPtr->dct_method = JDCT_IFAST;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   297
	or: cinfoPtr->dct_method = JDCT_FLOAT;
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   298
#endif
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   299
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   300
	/* dither setting */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   301
	cinfoPtr->dither_mode = JDITHER_FS;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   302
	if (__INST(forceDitherMode) == @symbol(none)) {
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   303
	    cinfoPtr->dither_mode = JDITHER_NONE;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   304
	} else {
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   305
	    if (__INST(forceDitherMode) == @symbol(ordered)) {
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   306
		cinfoPtr->dither_mode = JDITHER_ORDERED;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   307
	    }
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   308
	}
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   309
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   310
#if 0
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   311
	/* fast setting */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   312
	cinfoPtr->two_pass_quantize = FALSE;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   313
	cinfoPtr->dither_mode = JDITHER_ORDERED;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   314
	cinfoPtr->desired_number_of_colors = 216;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   315
	cinfoPtr->dct_method = JDCT_FASTEST;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   316
	cinfoPtr->do_fancy_upsampling = FALSE;
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   317
#endif
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   318
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   319
	if (__INST(forceGrayscale) == true) {
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   320
	    /* grayscale setting */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   321
	    cinfoPtr->out_color_space = JCS_GRAYSCALE;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   322
	}
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   323
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   324
#if 0
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   325
	/* maxmemory setting */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   326
	cinfoPtr->mem->max_memory_to_use = lval * 1000L;
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   327
#endif
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   328
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   329
#if 0
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   330
	/* nosmooth setting */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   331
	cinfoPtr->do_fancy_upsampling = FALSE;
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   332
#endif
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   333
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   334
#if 0
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   335
	/* onepass setting */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   336
	cinfoPtr->two_pass_quantize = FALSE;
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   337
#endif
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   338
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   339
	/* Specify data source for decompression */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   340
	jpeg_stdio_src(cinfoPtr, f);
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   341
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   342
	/* Read file header, set default decompression parameters */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   343
	(void) jpeg_read_header(cinfoPtr, TRUE);
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   344
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   345
	/* Calculate output image dimensions so we can allocate space */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   346
	jpeg_calc_output_dimensions(cinfoPtr);
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   347
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   348
	__INST(width) = __MKSMALLINT(cinfoPtr->output_width);
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   349
	__INST(height) = __MKSMALLINT(cinfoPtr->output_height);
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   350
	__INST(colorComponents) = __MKSMALLINT(cinfoPtr->output_components);
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   351
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   352
#if 0
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   353
	/* could now set additional values in cinfo
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   354
	 * (colormap)
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   355
	 */
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   356
#endif
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   357
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   358
    }
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   359
%}.
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   360
    ^ true
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   361
!
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   362
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   363
decompressChunkInto:aByteArray startingAt:index
1080
3be38bb2d33c declared stack for jpeg functions (they seem to need some)
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
   364
%{  /* STACK: 200000 */
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   365
    struct jpeg_decompress_struct *cinfoPtr;
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   366
    struct my_error_mgr *jerrPtr;
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   367
    char *rowPtr = NULL;
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   368
    OBJ j_d_s = __INST(jpeg_decompress_struct);
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   369
    OBJ j_e_m = __INST(jpeg_error_mgr_struct);
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   370
    int num_scanlines;
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   371
    char *rowPointers[4];
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   372
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   373
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   374
    if (__isByteArray(aByteArray)) {
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   375
        rowPtr = (char *)(__ByteArrayInstPtr(aByteArray)->ba_element);
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   376
    } else if (__isExternalBytes(aByteArray)) {
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   377
        rowPtr = __externalBytesAddress(aByteArray);
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   378
    }
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   379
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   380
    if (__isExternalBytes(j_d_s)
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   381
     && (rowPtr != NULL)
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   382
     && __isExternalBytes(j_e_m)) {
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   383
	cinfoPtr = (struct jpeg_decompress_struct *)(__externalBytesAddress(j_d_s));
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   384
	jerrPtr = (struct my_error_mgr *)(__externalBytesAddress(j_e_m));
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   385
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   386
	rowPtr += __intVal(index) - 1;
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   387
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   388
	rowPointers[0] = rowPtr;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   389
	rowPointers[1] = NULL;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   390
	rowPointers[2] = NULL;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   391
	rowPointers[3] = NULL;
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   392
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   393
	if (cinfoPtr->output_scanline < cinfoPtr->output_height) {
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   394
	    if (setjmp(jerrPtr->setjmp_buffer)) {
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   395
		/* 
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   396
		 * error occurred ...
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   397
		 */
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   398
		jpeg_destroy_decompress(cinfoPtr);
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   399
		RETURN (__MKSMALLINT(-1));
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   400
	    }
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   401
	    num_scanlines = jpeg_read_scanlines(cinfoPtr, 
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   402
						rowPointers,
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   403
						1);
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   404
	    RETURN (__MKSMALLINT(num_scanlines));
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   405
	}
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   406
	RETURN (__MKSMALLINT(0));
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   407
    }
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   408
%}.
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   409
    self halt:'bad arguments'.
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   410
!
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   411
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   412
finish_decompress
1080
3be38bb2d33c declared stack for jpeg functions (they seem to need some)
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
   413
%{  /* STACK: 200000 */
536
b88ac48a1ec0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 535
diff changeset
   414
    struct jpeg_decompress_struct *cinfoPtr;
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   415
    struct my_error_mgr *jerrPtr;
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   416
    OBJ j_d_s = __INST(jpeg_decompress_struct);
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   417
    OBJ j_e_m = __INST(jpeg_error_mgr_struct);
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   418
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   419
    if (__isExternalBytes(j_d_s)
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   420
     && __isExternalBytes(j_e_m)) {
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   421
	cinfoPtr = (struct jpeg_decompress_struct *)(__externalBytesAddress(j_d_s));
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   422
	jerrPtr = (struct my_error_mgr *)(__externalBytesAddress(j_e_m));
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   423
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   424
	if (setjmp(jerrPtr->setjmp_buffer)) {
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   425
	    jpeg_destroy_decompress(cinfoPtr);
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   426
	    RETURN (false);
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   427
	}
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   428
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   429
	/* finish decompressor */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   430
	(void) jpeg_finish_decompress(cinfoPtr);
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   431
	(void) jpeg_destroy_decompress(cinfoPtr);
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   432
	RETURN (true);
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   433
    }
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   434
%}
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   435
!
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   436
535
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   437
get_error_message
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   438
%{
536
b88ac48a1ec0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 535
diff changeset
   439
    struct jpeg_decompress_struct *cinfoPtr;
535
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   440
    OBJ j_d_s = __INST(jpeg_decompress_struct);
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   441
    char buffer[JMSG_LENGTH_MAX+1];
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   442
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   443
    if (__isExternalBytes(j_d_s)) {
536
b88ac48a1ec0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 535
diff changeset
   444
	cinfoPtr = (struct jpeg_decompress_struct *)(__externalBytesAddress(j_d_s));
535
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   445
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   446
	(*cinfoPtr->err->format_message) (cinfoPtr, buffer);
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   447
	buffer[JMSG_LENGTH_MAX] = '\0';
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   448
	RETURN ( __MKSTRING(buffer));
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   449
    }
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   450
%}.
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   451
    ^ nil
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   452
!
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   453
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   454
start_decompress
1080
3be38bb2d33c declared stack for jpeg functions (they seem to need some)
Claus Gittinger <cg@exept.de>
parents: 1070
diff changeset
   455
%{  /* STACK: 200000 */
536
b88ac48a1ec0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 535
diff changeset
   456
    struct jpeg_decompress_struct *cinfoPtr;
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   457
    struct my_error_mgr *jerrPtr;
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   458
    OBJ j_d_s = __INST(jpeg_decompress_struct);
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   459
    OBJ j_e_m = __INST(jpeg_error_mgr_struct);
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   460
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   461
    if (__isExternalBytes(j_d_s)
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   462
     && __isExternalBytes(j_e_m)) {
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   463
	cinfoPtr = (struct jpeg_decompress_struct *)(__externalBytesAddress(j_d_s));
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   464
	jerrPtr = (struct my_error_mgr *)(__externalBytesAddress(j_e_m));
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   465
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   466
	if (setjmp(jerrPtr->setjmp_buffer)) {
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   467
	    jpeg_destroy_decompress(cinfoPtr);
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   468
	    RETURN (false);
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   469
	}
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   470
1061
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   471
	/* Start decompressor */
e487ecc3d506 define my own error printing function (req'd to avoid bad
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
   472
	(void) jpeg_start_decompress(cinfoPtr);
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   473
	RETURN (true);
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   474
    }
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   475
%}
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   476
! !
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   477
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   478
!JPEGReader methodsFor:'reading from stream'!
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   479
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   480
fromStream:aStream
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   481
    "read a JPG image from a stream"
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   482
951
de8417214dfd read from an internal stream (save to tempfile, then read)
Claus Gittinger <cg@exept.de>
parents: 895
diff changeset
   483
    |dataIdx bytesPerRow returnCode pos1 ok tmpFile s|
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   484
895
ebac67edf08e check for inStream being an external stream.
Claus Gittinger <cg@exept.de>
parents: 669
diff changeset
   485
    aStream isExternalStream ifFalse:[
1070
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   486
        "/ libJpeg can only handle real OS-streams
951
de8417214dfd read from an internal stream (save to tempfile, then read)
Claus Gittinger <cg@exept.de>
parents: 895
diff changeset
   487
1070
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   488
        tmpFile := Filename newTemporary.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   489
        [
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   490
            s := tmpFile writeStream binary.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   491
            s nextPutAll:aStream contents.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   492
            s close.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   493
            s := tmpFile readStream binary.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   494
            ^ self fromStream:s.
1558
1ae43779327f #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 1094
diff changeset
   495
        ] ensure:[
1070
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   496
            s notNil ifTrue:[s close].
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   497
            tmpFile delete.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   498
        ].
951
de8417214dfd read from an internal stream (save to tempfile, then read)
Claus Gittinger <cg@exept.de>
parents: 895
diff changeset
   499
        
1070
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   500
        "/ 'JPEGReader [info]: can only read from real streams' infoPrintCR.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   501
        "/ ^ nil
895
ebac67edf08e check for inStream being an external stream.
Claus Gittinger <cg@exept.de>
parents: 669
diff changeset
   502
    ].
ebac67edf08e check for inStream being an external stream.
Claus Gittinger <cg@exept.de>
parents: 669
diff changeset
   503
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   504
    inStream := aStream.
669
d38a796ad10b care for files with 128 byte header before actual image
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
   505
    pos1 := inStream position.
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   506
895
ebac67edf08e check for inStream being an external stream.
Claus Gittinger <cg@exept.de>
parents: 669
diff changeset
   507
535
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   508
    (self create_jpeg_decompress_struct not
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   509
    or:[self start_decompress not]) ifTrue:[
1070
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   510
        ok := false.
669
d38a796ad10b care for files with 128 byte header before actual image
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
   511
1070
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   512
        "/ if there was no SOI marker,
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   513
        "/ try again, skipping first 128 bytes
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   514
        "/ (seems to be generated by some jpg writers)
669
d38a796ad10b care for files with 128 byte header before actual image
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
   515
1070
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   516
        inStream position:pos1.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   517
        ((inStream nextByte ~~ 16rFF)
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   518
        or:[inStream nextByte ~~ 16rD8]) ifTrue:[
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   519
            inStream position:pos1 + 128.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   520
            ((inStream nextByte == 16rFF)
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   521
            and:[inStream nextByte == 16rD8]) ifTrue:[
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   522
                inStream position:pos1 + 128.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   523
                ok := self create_jpeg_decompress_struct
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   524
                      and:[self start_decompress]
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   525
            ].
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   526
        ].
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   527
        ok ifFalse:[
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   528
            'JPEGReader [info]: ' infoPrint. self get_error_message infoPrintCR.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   529
            ^ nil
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   530
        ]
535
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   531
    ].
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   532
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   533
    data := ByteArray uninitializedNew:(width * height * colorComponents).
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   534
    dataIdx := 1.
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   535
    bytesPerRow := colorComponents * width.
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   536
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   537
    [(returnCode := self decompressChunkInto:data startingAt:dataIdx) > 0] whileTrue:[
1070
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   538
        "/ got a row in the buffer ...
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   539
        dataIdx := dataIdx + bytesPerRow
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   540
    ].    
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   541
    returnCode < 0 ifTrue:[
1070
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   542
        'JPEGReader [info]: ' infoPrint. self get_error_message infoPrintCR.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   543
        ^ nil
534
d59b2e2b4fa9 error handling
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   544
    ].
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   545
535
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   546
    (self finish_decompress) ifFalse:[
1070
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   547
        'JPEGReader [info]: ' infoPrint. self get_error_message infoPrintCR.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   548
        ^ nil
535
f6a45bb3aa4c error message
Claus Gittinger <cg@exept.de>
parents: 534
diff changeset
   549
    ].
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   550
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   551
    colorComponents == 3 ifTrue:[
1070
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   552
        photometric := #rgb.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   553
        samplesPerPixel := 3.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   554
        bitsPerSample := #(8 8 8).
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   555
    ] ifFalse:[
1070
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   556
        photometric := #blackIs0.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   557
        samplesPerPixel := 1.
9c845473f95d oops - fileName delete; not destroy
Claus Gittinger <cg@exept.de>
parents: 1061
diff changeset
   558
        bitsPerSample := #(8).
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   559
    ].
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   560
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   561
    "
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   562
     JPEGReader fromFile:'../../support/libjpeg-6a/testimg.jpg'
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   563
    "
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   564
    "
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   565
     |stream reader|
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   566
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   567
     stream := '../../support/libjpeg-6a/testimg.jpg' asFilename readStream.
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   568
     reader := JPEGReader new.
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   569
     reader forceGrayscale:true.
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   570
     reader forceDitherMode:#ordered.
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   571
     reader fromStream:stream.
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   572
     ^ reader image
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   573
    "
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   574
895
ebac67edf08e check for inStream being an external stream.
Claus Gittinger <cg@exept.de>
parents: 669
diff changeset
   575
    "Modified: / 4.4.1998 / 18:48:46 / cg"
528
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   576
! !
e7bc0efceac9 interface to libjpeg
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
   577
199
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   578
!JPEGReader class methodsFor:'documentation'!
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   579
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   580
version
1558
1ae43779327f #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 1094
diff changeset
   581
    ^ '$Header: /cvs/stx/stx/libview2/JPEGReader.st,v 1.40 2002-02-26 13:03:27 cg Exp $'
199
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   582
! !
d80a247e0cfe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   583
JPEGReader initialize!