TIFFReader.st
author Claus Gittinger <cg@exept.de>
Mon, 28 Aug 2017 03:36:12 +0200
changeset 3987 d061c7dccdbe
parent 3986 a71704884650
child 3989 a1fa18648a9c
permissions -rw-r--r--
#BUGFIX by cg class: TIFFReader changed: #readDeflateTiffImageData #readImageDataUsingDecompresor:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
3f9277473954 Initial revision
claus
parents:
diff changeset
     1
"
6
4ac87e6bf82f *** empty log message ***
claus
parents: 5
diff changeset
     2
 COPYRIGHT (c) 1991 by Claus Gittinger
28
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
     3
	      All Rights Reserved
0
3f9277473954 Initial revision
claus
parents:
diff changeset
     4
3f9277473954 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
3f9277473954 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
3f9277473954 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
3f9277473954 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
3f9277473954 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
3f9277473954 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
3f9277473954 Initial revision
claus
parents:
diff changeset
    11
"
1571
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
    12
"{ Package: 'stx:libview2' }"
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
    13
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
    14
"{ NameSpace: Smalltalk }"
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
    15
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    16
ImageReader subclass:#TIFFReader
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
    17
	instanceVariableNames:'planarConfiguration subFileType stripOffsets rowsPerStrip
159
327da5085900 fixed saving of 24bit RGB images (forgot samplesPerPixel-TAG)
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
    18
		fillOrder compression group3options predictor stripByteCounts
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    19
		currentOffset stripOffsetsPos stripByteCountsPos stripRowCounts
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    20
		bitsPerSamplePos colorMapPos orientation isBigTiff tileOffsets
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    21
		tileByteCounts tileWidth tileLength sampleFormat minSampleValue
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    22
		maxSampleValue subIfds decodeMetaTags loadFullResolutionImage
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    23
		isDNGImage'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    24
	classVariableNames:'Verbose COMPRESSION_NONE COMPRESSION_CCITTRLE
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    25
		COMPRESSION_CCITTFAX3 COMPRESSION_CCITTFAX4 COMPRESSION_LZW
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    26
		COMPRESSION_OJPEG COMPRESSION_JPEG COMPRESSION_ADOBE_DEFLATE
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    27
		COMPRESSION_JBIG_T85 COMPRESSION_JBIG_T43 COMPRESSION_NEXT
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    28
		COMPRESSION_CCITTRLEW COMPRESSION_PACKBITS
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    29
		COMPRESSION_THUNDERSCAN COMPRESSION_IT8CTPAD COMPRESSION_IT8LW
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    30
		COMPRESSION_IT8MP COMPRESSION_IT8BL COMPRESSION_PIXARFILM
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    31
		COMPRESSION_PIXARLOG COMPRESSION_DEFLATE COMPRESSION_DCS
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    32
		COMPRESSION_JBIG COMPRESSION_JPEG2000 COMPRESSION_NIKON_NEF
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    33
		COMPRESSION_JBIG2 COMPRESSION_NEXT_JPEG SAMPLEFORMAT_UINT
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    34
		SAMPLEFORMAT_INT SAMPLEFORMAT_IEEEFP SAMPLEFORMAT_VOID
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    35
		SAMPLEFORMAT_COMPLEXINT SAMPLEFORMAT_COMPLEXIEEEFP
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    36
		COMPRESSION_SGILOG COMPRESSION_SGILOG24 PLANARCONFIG_CONTIG
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    37
		PLANARCONFIG_SEPARATE FILETYPE_MASK_REDUCEDIMAGE
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
    38
		FILETYPE_MASK_PAGE FILETYPE_MASK_MASK FILLORDER_MSB2LSB
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
    39
		FILLORDER_LSB2MSB'
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
    40
	poolDictionaries:''
1745
4fa0fad2a463 code cleanup (colorMap handling)
Claus Gittinger <cg@exept.de>
parents: 1712
diff changeset
    41
	category:'Graphics-Images-Readers'
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    42
!
3f9277473954 Initial revision
claus
parents:
diff changeset
    43
3693
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    44
Dictionary subclass:#TIFFMetaData
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    45
	instanceVariableNames:''
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    46
	classVariableNames:''
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    47
	poolDictionaries:''
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    48
	privateIn:TIFFReader
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    49
!
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    50
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
    51
!TIFFReader class methodsFor:'documentation'!
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    52
21
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    53
copyright
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    54
"
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    55
 COPYRIGHT (c) 1991 by Claus Gittinger
28
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
    56
	      All Rights Reserved
21
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    57
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    58
 This software is furnished under a license and may be used
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    59
 only in accordance with the terms of that license and with the
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    60
 inclusion of the above copyright notice.   This software may not
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    61
 be provided or otherwise made available to, or used by, any
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    62
 other person.  No title to or ownership of the software is
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    63
 hereby transferred.
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    64
"
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    65
!
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    66
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    67
documentation
3f9277473954 Initial revision
claus
parents:
diff changeset
    68
"
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    69
    This class knows how to read TIFF files and how to write uncompressed TIFF files.
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
    70
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    71
    Implemented & Missing Features:
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
    72
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    73
      - Only single image files are supported.
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    74
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    75
      - Not all formats are implemented, and of those that are, not all are tested.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
    76
        It should read with most rgb, palette, mono and greyscale images, 
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
    77
        although the alpha channel is currently not supported and ignored.
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    78
        It supports reading of uncompressed, LZW, packbits and CCITT-G3 compressed images
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    79
        JPEG and many other formats are currently not implemented.
30
9638bc775850 *** empty log message ***
claus
parents: 28
diff changeset
    80
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    81
      - Only writing of uncompressed images is currently implemented.
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    82
        It should write (at least) mono, 8-bit palette and 24 bit rgb formats.
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    83
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    84
      - bigTiff is supported
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    85
      
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
    86
      - some dng tags are supported
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    87
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    88
    More formats will come... (will they ever be needed?)
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    89
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    90
    TODO (?): 
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    91
        since I don't want to spend all of my life adding more formats here and
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    92
        reinventing the wheel, this code should be changed to use the tiff library.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    93
        That would give us most formats and also writing capabilities for free.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    94
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    95
        Late note: 
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    96
            I hate C and interfacing to C libraries: it almost always leads to trouble
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    97
            w.r.t. memory leaks, non-reentrancy, non-interruptability etc.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    98
            (we recently fixed a malloc-non-reentrant bug for some architecture...)
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    99
            So its probably better to do it all in a real programming language ;-)
195
7975a2c4a890 commentary
Claus Gittinger <cg@exept.de>
parents: 192
diff changeset
   100
220
4106d9ce7e02 documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   101
    [author:]
4106d9ce7e02 documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   102
        Claus Gittinger
4106d9ce7e02 documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   103
195
7975a2c4a890 commentary
Claus Gittinger <cg@exept.de>
parents: 192
diff changeset
   104
    [See also:]
234
b6352d13e792 xrefs in documentation
Claus Gittinger <cg@exept.de>
parents: 220
diff changeset
   105
        Image Form Icon
197
50812e81d86f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 195
diff changeset
   106
        BlitImageReader FaceReader GIFReader JPEGReader PBMReader PCXReader 
210
5405de794686 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 209
diff changeset
   107
        ST80FormReader SunRasterReader TargaReader WindowsIconReader 
209
840ddcf12904 commentary
Claus Gittinger <cg@exept.de>
parents: 198
diff changeset
   108
        XBMReader XPMReader XWDReader 
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   109
"
3f9277473954 Initial revision
claus
parents:
diff changeset
   110
! !
3f9277473954 Initial revision
claus
parents:
diff changeset
   111
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   112
!TIFFReader class methodsFor:'initialization'!
28
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
   113
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
   114
initialize
198
6d76856aaa80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 197
diff changeset
   115
    "install myself in the Image classes fileFormat table
398
aef700d15416 new suffix-table
Claus Gittinger <cg@exept.de>
parents: 393
diff changeset
   116
     for the `.tiff' and `.tif' extensions."
198
6d76856aaa80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 197
diff changeset
   117
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   118
    MIMETypes defineImageType:'image/tiff' suffix:'tif'  reader:self info:'tiff image'.
647
6f26c76aa0c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 623
diff changeset
   119
    MIMETypes defineImageType:nil          suffix:'tiff' reader:self.
198
6d76856aaa80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 197
diff changeset
   120
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   121
    MIMETypes defineImageType:'image/x-adobe-dng' suffix:'dng' reader:self info:'digital negative image'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   122
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   123
    COMPRESSION_NONE            := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   124
    COMPRESSION_CCITTRLE        := 2.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   125
    COMPRESSION_CCITTFAX3       := 3.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   126
    COMPRESSION_CCITTFAX4       := 4.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   127
    COMPRESSION_LZW             := 5.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   128
    COMPRESSION_OJPEG           := 6. "/ (old style jpeg)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   129
    COMPRESSION_JPEG            := 7. "/ (new style jpeg)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   130
    COMPRESSION_ADOBE_DEFLATE   := 8.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   131
    COMPRESSION_JBIG_T85        := 9.  "/ (ITU-T T85)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   132
    COMPRESSION_JBIG_T43        := 10. "/ (ITU-T T43)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   133
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   134
    COMPRESSION_NEXT            := 32766. "/ (NeXT 2-bit encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   135
    COMPRESSION_CCITTRLEW       := 32771.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   136
    COMPRESSION_PACKBITS        := 32773.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   137
    COMPRESSION_THUNDERSCAN     := 32809. "/ (ThunderScan 4-bit encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   138
    COMPRESSION_NEXT_JPEG       := 32865. "/ (NeXT jpeg encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   139
    COMPRESSION_IT8CTPAD        := 32895.  
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   140
    COMPRESSION_IT8LW           := 32896.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   141
    COMPRESSION_IT8MP           := 32897. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   142
    COMPRESSION_IT8BL           := 32898. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   143
    COMPRESSION_PIXARFILM       := 32908.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   144
    COMPRESSION_PIXARLOG        := 32909. "/ (Pixar companded 11-bit ZIP encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   145
    COMPRESSION_DEFLATE         := 32946. "/ (PKZIP-style Deflate encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   146
    COMPRESSION_DCS             := 32947. "/ (kodac)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   147
    COMPRESSION_JBIG            := 34661.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   148
    COMPRESSION_SGILOG          := 34676. "/ (SGI 32-bit Log Luminance encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   149
    COMPRESSION_SGILOG24        := 34677. "/ (SGI 24-bit Log Luminance encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   150
    COMPRESSION_JPEG2000        := 34712. "/ JPEG2000
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   151
    COMPRESSION_NIKON_NEF       := 34713.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   152
    COMPRESSION_JBIG2           := 34715.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   153
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   154
    SAMPLEFORMAT_UINT           := 1.       "/ !!unsigned integer data 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   155
    SAMPLEFORMAT_INT            := 2.       "/ !!signed integer data 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   156
    SAMPLEFORMAT_IEEEFP         := 3.       "/ !!IEEE floating point data 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   157
    SAMPLEFORMAT_VOID           := 4.       "/ !!untyped data 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   158
    SAMPLEFORMAT_COMPLEXINT     := 5.       "/ !!complex signed int 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   159
    SAMPLEFORMAT_COMPLEXIEEEFP  := 6.       "/ !!complex ieee floating 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   160
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   161
    PLANARCONFIG_CONTIG         := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   162
    PLANARCONFIG_SEPARATE       := 2.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   163
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   164
    FILETYPE_MASK_REDUCEDIMAGE  := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   165
    FILETYPE_MASK_PAGE          := 2.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   166
    FILETYPE_MASK_MASK          := 4. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   167
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   168
    FILLORDER_MSB2LSB := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   169
    FILLORDER_LSB2MSB := 2.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   170
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   171
"/    TYPE_NOTYPE := 0.           "/ placeholder 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   172
"/    TYPE_BYTE   := 1.           "/ 8-bit unsigned integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   173
"/    TYPE_ASCII  := 2.           "/ 8-bit bytes w/ last byte null 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   174
"/    TYPE_SHORT  := 3.           "/ 16-bit unsigned integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   175
"/    TYPE_LONG   := 4.           "/ 32-bit unsigned integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   176
"/    TYPE_RATIONAL := 5.         "/ 64-bit unsigned fraction 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   177
"/    TYPE_SBYTE  := 6.           "/ !!8-bit signed integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   178
"/    TYPE_UNDEFINED  := 7.       "/ !!8-bit untyped data 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   179
"/    TYPE_SSHORT     := 8.       "/ !!16-bit signed integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   180
"/    TYPE_SLONG      := 9.       "/ !!32-bit signed integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   181
"/    TYPE_SRATIONAL  := 10.      "/ !!64-bit signed fraction 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   182
"/    TYPE_FLOAT      := 11.      "/ !!32-bit IEEE floating point 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   183
"/    TYPE_DOUBLE     := 12.      "/ !!64-bit IEEE floating point 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   184
"/    TYPE_IFD        := 13.      "/ %32-bit unsigned integer (offset) 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   185
"/    TYPE_LONG8      := 16.      "/ BigTIFF 64-bit unsigned integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   186
"/    TYPE_SLONG8     := 17.      "/ BigTIFF 64-bit signed integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   187
"/    TYPE_IFD8       := 18.      "/ BigTIFF 64-bit unsigned integer (offset) 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   188
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   189
    "/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   190
    "/ TIFF tags
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   191
    "/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   192
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   193
"/    #define TIFFTAG_SUBFILETYPE             254     /* subfile data descriptor */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   194
"/    #define     FILETYPE_REDUCEDIMAGE       0x1     /* reduced resolution version */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   195
"/    #define     FILETYPE_PAGE               0x2     /* one page of many */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   196
"/    #define     FILETYPE_MASK               0x4     /* transparency mask */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   197
"/    #define TIFFTAG_OSUBFILETYPE            255     /* +kind of data in subfile */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   198
"/    #define     OFILETYPE_IMAGE             1       /* full resolution image data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   199
"/    #define     OFILETYPE_REDUCEDIMAGE      2       /* reduced size image data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   200
"/    #define     OFILETYPE_PAGE              3       /* one page of many */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   201
"/    #define TIFFTAG_IMAGEWIDTH              256     /* image width in pixels */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   202
"/    #define TIFFTAG_IMAGELENGTH             257     /* image height in pixels */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   203
"/    #define TIFFTAG_BITSPERSAMPLE           258     /* bits per channel (sample) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   204
"/    #define TIFFTAG_COMPRESSION             259     /* data compression technique */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   205
"/    #define     COMPRESSION_NONE            1       /* dump mode */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   206
"/    #define     COMPRESSION_CCITTRLE        2       /* CCITT modified Huffman RLE */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   207
"/    #define     COMPRESSION_CCITTFAX3       3       /* CCITT Group 3 fax encoding */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   208
"/    #define     COMPRESSION_CCITT_T4        3       /* CCITT T.4 (TIFF 6 name) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   209
"/    #define     COMPRESSION_CCITTFAX4       4       /* CCITT Group 4 fax encoding */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   210
"/    #define     COMPRESSION_CCITT_T6        4       /* CCITT T.6 (TIFF 6 name) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   211
"/    #define     COMPRESSION_LZW             5       /* Lempel-Ziv  & Welch */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   212
"/    #define     COMPRESSION_OJPEG           6       /* !!6.0 JPEG */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   213
"/    #define     COMPRESSION_JPEG            7       /* %JPEG DCT compression */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   214
"/    #define     COMPRESSION_T85                     9       /* !!TIFF/FX T.85 JBIG compression */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   215
"/    #define     COMPRESSION_T43                     10      /* !!TIFF/FX T.43 colour by layered JBIG compression */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   216
"/    #define     COMPRESSION_NEXT            32766   /* NeXT 2-bit RLE */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   217
"/    #define     COMPRESSION_CCITTRLEW       32771   /* #1 w/ word alignment */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   218
"/    #define     COMPRESSION_PACKBITS        32773   /* Macintosh RLE */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   219
"/    #define     COMPRESSION_THUNDERSCAN     32809   /* ThunderScan RLE */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   220
"/    /* codes 32895-32898 are reserved for ANSI IT8 TIFF/IT <dkelly@apago.com) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   221
"/    #define     COMPRESSION_IT8CTPAD        32895   /* IT8 CT w/padding */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   222
"/    #define     COMPRESSION_IT8LW           32896   /* IT8 Linework RLE */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   223
"/    #define     COMPRESSION_IT8MP           32897   /* IT8 Monochrome picture */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   224
"/    #define     COMPRESSION_IT8BL           32898   /* IT8 Binary line art */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   225
"/    /* compression codes 32908-32911 are reserved for Pixar */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   226
"/    #define     COMPRESSION_PIXARFILM       32908   /* Pixar companded 10bit LZW */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   227
"/    #define     COMPRESSION_PIXARLOG        32909   /* Pixar companded 11bit ZIP */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   228
"/    #define     COMPRESSION_DEFLATE         32946   /* Deflate compression */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   229
"/    #define     COMPRESSION_ADOBE_DEFLATE   8       /* Deflate compression,
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   230
"/                                                       as recognized by Adobe */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   231
"/    /* compression code 32947 is reserved for Oceana Matrix <dev@oceana.com> */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   232
"/    #define     COMPRESSION_DCS             32947   /* Kodak DCS encoding */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   233
"/    #define     COMPRESSION_JBIG            34661   /* ISO JBIG */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   234
"/    #define     COMPRESSION_SGILOG          34676   /* SGI Log Luminance RLE */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   235
"/    #define     COMPRESSION_SGILOG24        34677   /* SGI Log 24-bit packed */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   236
"/    #define     COMPRESSION_JP2000          34712   /* Leadtools JPEG2000 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   237
"/    #define     COMPRESSION_LZMA            34925   /* LZMA2 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   238
"/    #define TIFFTAG_PHOTOMETRIC             262     /* photometric interpretation */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   239
"/    #define     PHOTOMETRIC_MINISWHITE      0       /* min value is white */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   240
"/    #define     PHOTOMETRIC_MINISBLACK      1       /* min value is black */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   241
"/    #define     PHOTOMETRIC_RGB             2       /* RGB color model */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   242
"/    #define     PHOTOMETRIC_PALETTE         3       /* color map indexed */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   243
"/    #define     PHOTOMETRIC_MASK            4       /* $holdout mask */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   244
"/    #define     PHOTOMETRIC_SEPARATED       5       /* !!color separations */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   245
"/    #define     PHOTOMETRIC_YCBCR           6       /* !!CCIR 601 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   246
"/    #define     PHOTOMETRIC_CIELAB          8       /* !!1976 CIE L*a*b* */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   247
"/    #define     PHOTOMETRIC_ICCLAB          9       /* ICC L*a*b* [Adobe TIFF Technote 4] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   248
"/    #define     PHOTOMETRIC_ITULAB          10      /* ITU L*a*b* */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   249
"/    #define     PHOTOMETRIC_CFA             32803   /* color filter array */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   250
"/    #define     PHOTOMETRIC_LOGL            32844   /* CIE Log2(L) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   251
"/    #define     PHOTOMETRIC_LOGLUV          32845   /* CIE Log2(L) (u',v') */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   252
"/    #define TIFFTAG_THRESHHOLDING           263     /* +thresholding used on data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   253
"/    #define     THRESHHOLD_BILEVEL          1       /* b&w art scan */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   254
"/    #define     THRESHHOLD_HALFTONE         2       /* or dithered scan */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   255
"/    #define     THRESHHOLD_ERRORDIFFUSE     3       /* usually floyd-steinberg */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   256
"/    #define TIFFTAG_CELLWIDTH               264     /* +dithering matrix width */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   257
"/    #define TIFFTAG_CELLLENGTH              265     /* +dithering matrix height */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   258
"/    #define TIFFTAG_FILLORDER               266     /* data order within a byte */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   259
"/    #define     FILLORDER_MSB2LSB           1       /* most significant -> least */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   260
"/    #define     FILLORDER_LSB2MSB           2       /* least significant -> most */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   261
"/    #define TIFFTAG_DOCUMENTNAME            269     /* name of doc. image is from */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   262
"/    #define TIFFTAG_IMAGEDESCRIPTION        270     /* info about image */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   263
"/    #define TIFFTAG_MAKE                    271     /* scanner manufacturer name */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   264
"/    #define TIFFTAG_MODEL                   272     /* scanner model name/number */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   265
"/    #define TIFFTAG_STRIPOFFSETS            273     /* offsets to data strips */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   266
"/    #define TIFFTAG_ORIENTATION             274     /* +image orientation */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   267
"/    #define     ORIENTATION_TOPLEFT         1       /* row 0 top, col 0 lhs */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   268
"/    #define     ORIENTATION_TOPRIGHT        2       /* row 0 top, col 0 rhs */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   269
"/    #define     ORIENTATION_BOTRIGHT        3       /* row 0 bottom, col 0 rhs */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   270
"/    #define     ORIENTATION_BOTLEFT         4       /* row 0 bottom, col 0 lhs */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   271
"/    #define     ORIENTATION_LEFTTOP         5       /* row 0 lhs, col 0 top */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   272
"/    #define     ORIENTATION_RIGHTTOP        6       /* row 0 rhs, col 0 top */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   273
"/    #define     ORIENTATION_RIGHTBOT        7       /* row 0 rhs, col 0 bottom */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   274
"/    #define     ORIENTATION_LEFTBOT         8       /* row 0 lhs, col 0 bottom */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   275
"/    #define TIFFTAG_SAMPLESPERPIXEL         277     /* samples per pixel */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   276
"/    #define TIFFTAG_ROWSPERSTRIP            278     /* rows per strip of data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   277
"/    #define TIFFTAG_STRIPBYTECOUNTS         279     /* bytes counts for strips */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   278
"/    #define TIFFTAG_MINSAMPLEVALUE          280     /* +minimum sample value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   279
"/    #define TIFFTAG_MAXSAMPLEVALUE          281     /* +maximum sample value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   280
"/    #define TIFFTAG_XRESOLUTION             282     /* pixels/resolution in x */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   281
"/    #define TIFFTAG_YRESOLUTION             283     /* pixels/resolution in y */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   282
"/    #define TIFFTAG_PLANARCONFIG            284     /* storage organization */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   283
"/    #define     PLANARCONFIG_CONTIG         1       /* single image plane */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   284
"/    #define     PLANARCONFIG_SEPARATE       2       /* separate planes of data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   285
"/    #define TIFFTAG_PAGENAME                285     /* page name image is from */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   286
"/    #define TIFFTAG_XPOSITION               286     /* x page offset of image lhs */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   287
"/    #define TIFFTAG_YPOSITION               287     /* y page offset of image lhs */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   288
"/    #define TIFFTAG_FREEOFFSETS             288     /* +byte offset to free block */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   289
"/    #define TIFFTAG_FREEBYTECOUNTS          289     /* +sizes of free blocks */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   290
"/    #define TIFFTAG_GRAYRESPONSEUNIT        290     /* $gray scale curve accuracy */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   291
"/    #define     GRAYRESPONSEUNIT_10S        1       /* tenths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   292
"/    #define     GRAYRESPONSEUNIT_100S       2       /* hundredths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   293
"/    #define     GRAYRESPONSEUNIT_1000S      3       /* thousandths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   294
"/    #define     GRAYRESPONSEUNIT_10000S     4       /* ten-thousandths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   295
"/    #define     GRAYRESPONSEUNIT_100000S    5       /* hundred-thousandths */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   296
"/    #define TIFFTAG_GRAYRESPONSECURVE       291     /* $gray scale response curve */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   297
"/    #define TIFFTAG_GROUP3OPTIONS           292     /* 32 flag bits */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   298
"/    #define TIFFTAG_T4OPTIONS               292     /* TIFF 6.0 proper name alias */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   299
"/    #define     GROUP3OPT_2DENCODING        0x1     /* 2-dimensional coding */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   300
"/    #define     GROUP3OPT_UNCOMPRESSED      0x2     /* data not compressed */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   301
"/    #define     GROUP3OPT_FILLBITS          0x4     /* fill to byte boundary */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   302
"/    #define TIFFTAG_GROUP4OPTIONS           293     /* 32 flag bits */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   303
"/    #define TIFFTAG_T6OPTIONS               293     /* TIFF 6.0 proper name */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   304
"/    #define     GROUP4OPT_UNCOMPRESSED      0x2     /* data not compressed */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   305
"/    #define TIFFTAG_RESOLUTIONUNIT          296     /* units of resolutions */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   306
"/    #define     RESUNIT_NONE                1       /* no meaningful units */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   307
"/    #define     RESUNIT_INCH                2       /* english */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   308
"/    #define     RESUNIT_CENTIMETER          3       /* metric */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   309
"/    #define TIFFTAG_PAGENUMBER              297     /* page numbers of multi-page */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   310
"/    #define TIFFTAG_COLORRESPONSEUNIT       300     /* $color curve accuracy */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   311
"/    #define     COLORRESPONSEUNIT_10S       1       /* tenths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   312
"/    #define     COLORRESPONSEUNIT_100S      2       /* hundredths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   313
"/    #define     COLORRESPONSEUNIT_1000S     3       /* thousandths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   314
"/    #define     COLORRESPONSEUNIT_10000S    4       /* ten-thousandths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   315
"/    #define     COLORRESPONSEUNIT_100000S   5       /* hundred-thousandths */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   316
"/    #define TIFFTAG_TRANSFERFUNCTION        301     /* !!colorimetry info */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   317
"/    #define TIFFTAG_SOFTWARE                305     /* name & release */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   318
"/    #define TIFFTAG_DATETIME                306     /* creation date and time */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   319
"/    #define TIFFTAG_ARTIST                  315     /* creator of image */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   320
"/    #define TIFFTAG_HOSTCOMPUTER            316     /* machine where created */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   321
"/    #define TIFFTAG_PREDICTOR               317     /* prediction scheme w/ LZW */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   322
"/    #define     PREDICTOR_NONE              1       /* no prediction scheme used */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   323
"/    #define     PREDICTOR_HORIZONTAL        2       /* horizontal differencing */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   324
"/    #define     PREDICTOR_FLOATINGPOINT     3       /* floating point predictor */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   325
"/    #define TIFFTAG_WHITEPOINT              318     /* image white point */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   326
"/    #define TIFFTAG_PRIMARYCHROMATICITIES   319     /* !!primary chromaticities */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   327
"/    #define TIFFTAG_COLORMAP                320     /* RGB map for palette image */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   328
"/    #define TIFFTAG_HALFTONEHINTS           321     /* !!highlight+shadow info */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   329
"/    #define TIFFTAG_TILEWIDTH               322     /* !!tile width in pixels */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   330
"/    #define TIFFTAG_TILELENGTH              323     /* !!tile height in pixels */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   331
"/    #define TIFFTAG_TILEOFFSETS             324     /* !!offsets to data tiles */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   332
"/    #define TIFFTAG_TILEBYTECOUNTS          325     /* !!byte counts for tiles */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   333
"/    #define TIFFTAG_BADFAXLINES             326     /* lines w/ wrong pixel count */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   334
"/    #define TIFFTAG_CLEANFAXDATA            327     /* regenerated line info */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   335
"/    #define     CLEANFAXDATA_CLEAN          0       /* no errors detected */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   336
"/    #define     CLEANFAXDATA_REGENERATED    1       /* receiver regenerated lines */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   337
"/    #define     CLEANFAXDATA_UNCLEAN        2       /* uncorrected errors exist */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   338
"/    #define TIFFTAG_CONSECUTIVEBADFAXLINES  328     /* max consecutive bad lines */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   339
"/    #define TIFFTAG_SUBIFD                  330     /* subimage descriptors */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   340
"/    #define TIFFTAG_INKSET                  332     /* !!inks in separated image */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   341
"/    #define     INKSET_CMYK                 1       /* !!cyan-magenta-yellow-black color */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   342
"/    #define     INKSET_MULTIINK             2       /* !!multi-ink or hi-fi color */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   343
"/    #define TIFFTAG_INKNAMES                333     /* !!ascii names of inks */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   344
"/    #define TIFFTAG_NUMBEROFINKS            334     /* !!number of inks */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   345
"/    #define TIFFTAG_DOTRANGE                336     /* !!0% and 100% dot codes */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   346
"/    #define TIFFTAG_TARGETPRINTER           337     /* !!separation target */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   347
"/    #define TIFFTAG_EXTRASAMPLES            338     /* !!info about extra samples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   348
"/    #define     EXTRASAMPLE_UNSPECIFIED     0       /* !!unspecified data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   349
"/    #define     EXTRASAMPLE_ASSOCALPHA      1       /* !!associated alpha data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   350
"/    #define     EXTRASAMPLE_UNASSALPHA      2       /* !!unassociated alpha data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   351
"/    #define TIFFTAG_SAMPLEFORMAT            339     /* !!data sample format */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   352
"/    #define     SAMPLEFORMAT_UINT           1       /* !!unsigned integer data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   353
"/    #define     SAMPLEFORMAT_INT            2       /* !!signed integer data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   354
"/    #define     SAMPLEFORMAT_IEEEFP         3       /* !!IEEE floating point data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   355
"/    #define     SAMPLEFORMAT_VOID           4       /* !!untyped data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   356
"/    #define     SAMPLEFORMAT_COMPLEXINT     5       /* !!complex signed int */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   357
"/    #define     SAMPLEFORMAT_COMPLEXIEEEFP  6       /* !!complex ieee floating */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   358
"/    #define TIFFTAG_SMINSAMPLEVALUE         340     /* !!variable MinSampleValue */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   359
"/    #define TIFFTAG_SMAXSAMPLEVALUE         341     /* !!variable MaxSampleValue */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   360
"/    #define TIFFTAG_CLIPPATH                343     /* %ClipPath
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   361
"/                                                       [Adobe TIFF technote 2] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   362
"/    #define TIFFTAG_XCLIPPATHUNITS          344     /* %XClipPathUnits
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   363
"/                                                       [Adobe TIFF technote 2] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   364
"/    #define TIFFTAG_YCLIPPATHUNITS          345     /* %YClipPathUnits
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   365
"/                                                       [Adobe TIFF technote 2] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   366
"/    #define TIFFTAG_INDEXED                 346     /* %Indexed
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   367
"/                                                       [Adobe TIFF Technote 3] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   368
"/    #define TIFFTAG_JPEGTABLES              347     /* %JPEG table stream */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   369
"/    #define TIFFTAG_OPIPROXY                351     /* %OPI Proxy [Adobe TIFF technote] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   370
"/    /* Tags 400-435 are from the TIFF/FX spec */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   371
"/    #define TIFFTAG_GLOBALPARAMETERSIFD     400     /* !! */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   372
"/    #define TIFFTAG_PROFILETYPE                     401     /* !! */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   373
"/    #define     PROFILETYPE_UNSPECIFIED     0       /* !! */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   374
"/    #define     PROFILETYPE_G3_FAX          1       /* !! */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   375
"/    #define TIFFTAG_FAXPROFILE                      402     /* !! */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   376
"/    #define     FAXPROFILE_S                        1       /* !!TIFF/FX FAX profile S */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   377
"/    #define     FAXPROFILE_F                        2       /* !!TIFF/FX FAX profile F */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   378
"/    #define     FAXPROFILE_J                        3       /* !!TIFF/FX FAX profile J */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   379
"/    #define     FAXPROFILE_C                        4       /* !!TIFF/FX FAX profile C */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   380
"/    #define     FAXPROFILE_L                        5       /* !!TIFF/FX FAX profile L */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   381
"/    #define     FAXPROFILE_M                        6       /* !!TIFF/FX FAX profile LM */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   382
"/    #define TIFFTAG_CODINGMETHODS           403     /* !!TIFF/FX coding methods */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   383
"/    #define     CODINGMETHODS_T4_1D         (1 << 1)        /* !!T.4 1D */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   384
"/    #define     CODINGMETHODS_T4_2D         (1 << 2)        /* !!T.4 2D */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   385
"/    #define     CODINGMETHODS_T6            (1 << 3)        /* !!T.6 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   386
"/    #define     CODINGMETHODS_T85           (1 << 4)        /* !!T.85 JBIG */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   387
"/    #define     CODINGMETHODS_T42           (1 << 5)        /* !!T.42 JPEG */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   388
"/    #define     CODINGMETHODS_T43           (1 << 6)        /* !!T.43 colour by layered JBIG */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   389
"/    #define TIFFTAG_VERSIONYEAR                     404     /* !!TIFF/FX version year */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   390
"/    #define TIFFTAG_MODENUMBER                      405     /* !!TIFF/FX mode number */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   391
"/    #define TIFFTAG_DECODE                          433     /* !!TIFF/FX decode */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   392
"/    #define TIFFTAG_IMAGEBASECOLOR          434     /* !!TIFF/FX image base colour */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   393
"/    #define TIFFTAG_T82OPTIONS                      435     /* !!TIFF/FX T.82 options */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   394
"/    /*
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   395
"/     * Tags 512-521 are obsoleted by Technical Note #2 which specifies a
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   396
"/     * revised JPEG-in-TIFF scheme.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   397
"/     */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   398
"/    #define TIFFTAG_JPEGPROC                512     /* !!JPEG processing algorithm */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   399
"/    #define     JPEGPROC_BASELINE           1       /* !!baseline sequential */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   400
"/    #define     JPEGPROC_LOSSLESS           14      /* !!Huffman coded lossless */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   401
"/    #define TIFFTAG_JPEGIFOFFSET            513     /* !!pointer to SOI marker */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   402
"/    #define TIFFTAG_JPEGIFBYTECOUNT         514     /* !!JFIF stream length */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   403
"/    #define TIFFTAG_JPEGRESTARTINTERVAL     515     /* !!restart interval length */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   404
"/    #define TIFFTAG_JPEGLOSSLESSPREDICTORS  517     /* !!lossless proc predictor */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   405
"/    #define TIFFTAG_JPEGPOINTTRANSFORM      518     /* !!lossless point transform */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   406
"/    #define TIFFTAG_JPEGQTABLES             519     /* !!Q matrix offsets */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   407
"/    #define TIFFTAG_JPEGDCTABLES            520     /* !!DCT table offsets */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   408
"/    #define TIFFTAG_JPEGACTABLES            521     /* !!AC coefficient offsets */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   409
"/    #define TIFFTAG_YCBCRCOEFFICIENTS       529     /* !!RGB -> YCbCr transform */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   410
"/    #define TIFFTAG_YCBCRSUBSAMPLING        530     /* !!YCbCr subsampling factors */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   411
"/    #define TIFFTAG_YCBCRPOSITIONING        531     /* !!subsample positioning */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   412
"/    #define     YCBCRPOSITION_CENTERED      1       /* !!as in PostScript Level 2 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   413
"/    #define     YCBCRPOSITION_COSITED       2       /* !!as in CCIR 601-1 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   414
"/    #define TIFFTAG_REFERENCEBLACKWHITE     532     /* !!colorimetry info */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   415
"/    #define TIFFTAG_STRIPROWCOUNTS          559 /* !!TIFF/FX strip row counts */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   416
"/    #define TIFFTAG_XMLPACKET               700     /* %XML packet
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   417
"/                                                       [Adobe XMP Specification,
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   418
"/                                                       January 2004 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   419
"/    #define TIFFTAG_OPIIMAGEID              32781   /* %OPI ImageID
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   420
"/                                                       [Adobe TIFF technote] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   421
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   422
"/    /* tags 32952-32956 are private tags registered to Island Graphics */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   423
"/    #define TIFFTAG_REFPTS                  32953   /* image reference points */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   424
"/    #define TIFFTAG_REGIONTACKPOINT         32954   /* region-xform tack point */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   425
"/    #define TIFFTAG_REGIONWARPCORNERS       32955   /* warp quadrilateral */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   426
"/    #define TIFFTAG_REGIONAFFINE            32956   /* affine transformation mat */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   427
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   428
"/    /* tags 32995-32999 are private tags registered to SGI */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   429
"/    #define TIFFTAG_MATTEING                32995   /* $use ExtraSamples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   430
"/    #define TIFFTAG_DATATYPE                32996   /* $use SampleFormat */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   431
"/    #define TIFFTAG_IMAGEDEPTH              32997   /* z depth of image */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   432
"/    #define TIFFTAG_TILEDEPTH               32998   /* z depth/data tile */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   433
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   434
"/    /* tags 33300-33309 are private tags registered to Pixar */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   435
"/    /*
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   436
"/     * TIFFTAG_PIXAR_IMAGEFULLWIDTH and TIFFTAG_PIXAR_IMAGEFULLLENGTH
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   437
"/     * are set when an image has been cropped out of a larger image.  
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   438
"/     * They reflect the size of the original uncropped image.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   439
"/     * The TIFFTAG_XPOSITION and TIFFTAG_YPOSITION can be used
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   440
"/     * to determine the position of the smaller image in the larger one.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   441
"/     */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   442
"/    #define TIFFTAG_PIXAR_IMAGEFULLWIDTH    33300   /* full image size in x */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   443
"/    #define TIFFTAG_PIXAR_IMAGEFULLLENGTH   33301   /* full image size in y */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   444
"/     /* Tags 33302-33306 are used to identify special image modes and data
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   445
"/      * used by Pixar's texture formats.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   446
"/      */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   447
"/    #define TIFFTAG_PIXAR_TEXTUREFORMAT     33302   /* texture map format */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   448
"/    #define TIFFTAG_PIXAR_WRAPMODES         33303   /* s & t wrap modes */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   449
"/    #define TIFFTAG_PIXAR_FOVCOT            33304   /* cotan(fov) for env. maps */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   450
"/    #define TIFFTAG_PIXAR_MATRIX_WORLDTOSCREEN 33305
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   451
"/    #define TIFFTAG_PIXAR_MATRIX_WORLDTOCAMERA 33306
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   452
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   453
"/    /* tag 33405 is a private tag registered to Eastman Kodak */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   454
"/    #define TIFFTAG_WRITERSERIALNUMBER      33405   /* device serial number */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   455
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   456
"/    #define TIFFTAG_CFAREPEATPATTERNDIM     33421   /* dimensions of CFA pattern */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   457
"/    #define TIFFTAG_CFAPATTERN              33422   /* color filter array pattern */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   458
"/    /* tag 33432 is listed in the 6.0 spec w/ unknown ownership */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   459
"/    #define TIFFTAG_COPYRIGHT               33432   /* copyright string */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   460
"/    /* IPTC TAG from RichTIFF specifications */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   461
"/    #define TIFFTAG_RICHTIFFIPTC            33723
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   462
"/    /* 34016-34029 are reserved for ANSI IT8 TIFF/IT <dkelly@apago.com) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   463
"/    #define TIFFTAG_IT8SITE                 34016   /* site name */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   464
"/    #define TIFFTAG_IT8COLORSEQUENCE        34017   /* color seq. [RGB,CMYK,etc] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   465
"/    #define TIFFTAG_IT8HEADER               34018   /* DDES Header */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   466
"/    #define TIFFTAG_IT8RASTERPADDING        34019   /* raster scanline padding */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   467
"/    #define TIFFTAG_IT8BITSPERRUNLENGTH     34020   /* # of bits in short run */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   468
"/    #define TIFFTAG_IT8BITSPEREXTENDEDRUNLENGTH 34021/* # of bits in long run */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   469
"/    #define TIFFTAG_IT8COLORTABLE           34022   /* LW colortable */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   470
"/    #define TIFFTAG_IT8IMAGECOLORINDICATOR  34023   /* BP/BL image color switch */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   471
"/    #define TIFFTAG_IT8BKGCOLORINDICATOR    34024   /* BP/BL bg color switch */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   472
"/    #define TIFFTAG_IT8IMAGECOLORVALUE      34025   /* BP/BL image color value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   473
"/    #define TIFFTAG_IT8BKGCOLORVALUE        34026   /* BP/BL bg color value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   474
"/    #define TIFFTAG_IT8PIXELINTENSITYRANGE  34027   /* MP pixel intensity value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   475
"/    #define TIFFTAG_IT8TRANSPARENCYINDICATOR 34028  /* HC transparency switch */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   476
"/    #define TIFFTAG_IT8COLORCHARACTERIZATION 34029  /* color character. table */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   477
"/    #define TIFFTAG_IT8HCUSAGE              34030   /* HC usage indicator */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   478
"/    #define TIFFTAG_IT8TRAPINDICATOR        34031   /* Trapping indicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   479
"/                                                       (untrapped=0, trapped=1) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   480
"/    #define TIFFTAG_IT8CMYKEQUIVALENT       34032   /* CMYK color equivalents */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   481
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   482
"/    /* tags 34232-34236 are private tags registered to Texas Instruments */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   483
"/    #define TIFFTAG_FRAMECOUNT              34232   /* Sequence Frame Count */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   484
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   485
"/    /* tag 34377 is private tag registered to Adobe for PhotoShop */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   486
"/    #define TIFFTAG_PHOTOSHOP               34377 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   487
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   488
"/    /* tags 34665, 34853 and 40965 are documented in EXIF specification */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   489
"/    #define TIFFTAG_EXIFIFD                 34665   /* Pointer to EXIF private directory */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   490
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   491
"/    /* tag 34750 is a private tag registered to Adobe? */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   492
"/    #define TIFFTAG_ICCPROFILE              34675   /* ICC profile data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   493
"/    #define TIFFTAG_IMAGELAYER              34732   /* !!TIFF/FX image layer information */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   494
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   495
"/    /* tag 34750 is a private tag registered to Pixel Magic */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   496
"/    #define TIFFTAG_JBIGOPTIONS             34750   /* JBIG options */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   497
"/    #define TIFFTAG_GPSIFD                  34853   /* Pointer to GPS private directory */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   498
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   499
"/    /* tags 34908-34914 are private tags registered to SGI */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   500
"/    #define TIFFTAG_FAXRECVPARAMS           34908   /* encoded Class 2 ses. parms */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   501
"/    #define TIFFTAG_FAXSUBADDRESS           34909   /* received SubAddr string */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   502
"/    #define TIFFTAG_FAXRECVTIME             34910   /* receive time (secs) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   503
"/    #define TIFFTAG_FAXDCS                  34911   /* encoded fax ses. params, Table 2/T.30 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   504
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   505
"/    /* tags 37439-37443 are registered to SGI <gregl@sgi.com> */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   506
"/    #define TIFFTAG_STONITS                 37439   /* Sample value to Nits */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   507
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   508
"/    /* tag 34929 is a private tag registered to FedEx */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   509
"/    #define TIFFTAG_FEDEX_EDR               34929   /* unknown use */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   510
"/    #define TIFFTAG_INTEROPERABILITYIFD     40965   /* Pointer to Interoperability private directory */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   511
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   512
    "/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   513
    "/ Adobe Digital Negative (DNG) format tags
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   514
    "/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   515
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   516
"/    #define TIFFTAG_DNGVERSION              50706   /* &DNG version number */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   517
"/    #define TIFFTAG_DNGBACKWARDVERSION      50707   /* &DNG compatibility version */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   518
"/    #define TIFFTAG_UNIQUECAMERAMODEL       50708   /* &name for the camera model */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   519
"/    #define TIFFTAG_LOCALIZEDCAMERAMODEL    50709   /* &localized camera model name */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   520
"/    #define TIFFTAG_CFAPLANECOLOR           50710   /* &CFAPattern->LinearRaw space mapping */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   521
"/    #define TIFFTAG_CFALAYOUT               50711   /* &spatial layout of the CFA */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   522
"/    #define TIFFTAG_LINEARIZATIONTABLE      50712   /* &lookup table description */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   523
"/    #define TIFFTAG_BLACKLEVELREPEATDIM     50713   /* &repeat pattern size for the BlackLevel tag */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   524
"/    #define TIFFTAG_BLACKLEVEL              50714   /* &zero light encoding level */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   525
"/    #define TIFFTAG_BLACKLEVELDELTAH        50715   /* &zero light encoding level differences (columns) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   526
"/    #define TIFFTAG_BLACKLEVELDELTAV        50716   /* &zero light encoding level differences (rows) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   527
"/    #define TIFFTAG_WHITELEVEL              50717   /* &fully saturated encoding level */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   528
"/    #define TIFFTAG_DEFAULTSCALE            50718   /* &default scale factors */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   529
"/    #define TIFFTAG_DEFAULTCROPORIGIN       50719   /* &origin of the final image area */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   530
"/    #define TIFFTAG_DEFAULTCROPSIZE         50720   /* &size of the final image area */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   531
"/    #define TIFFTAG_COLORMATRIX1            50721   /* &XYZ->reference color space transformation matrix 1 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   532
"/    #define TIFFTAG_COLORMATRIX2            50722   /* &XYZ->reference color space transformation matrix 2 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   533
"/    #define TIFFTAG_CAMERACALIBRATION1      50723   /* &calibration matrix 1 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   534
"/    #define TIFFTAG_CAMERACALIBRATION2      50724   /* &calibration matrix 2 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   535
"/    #define TIFFTAG_REDUCTIONMATRIX1        50725   /* &dimensionality reduction matrix 1 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   536
"/    #define TIFFTAG_REDUCTIONMATRIX2        50726   /* &dimensionality reduction matrix 2 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   537
"/    #define TIFFTAG_ANALOGBALANCE           50727   /* &gain applied the stored raw values*/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   538
"/    #define TIFFTAG_ASSHOTNEUTRAL           50728   /* &selected white balance in linear reference space */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   539
"/    #define TIFFTAG_ASSHOTWHITEXY           50729   /* &selected white balance in x-y chromaticity coordinates */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   540
"/    #define TIFFTAG_BASELINEEXPOSURE        50730   /* &how much to move the zero point */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   541
"/    #define TIFFTAG_BASELINENOISE           50731   /* &relative noise level */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   542
"/    #define TIFFTAG_BASELINESHARPNESS       50732   /* &relative amount of sharpening */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   543
"/    #define TIFFTAG_BAYERGREENSPLIT         50733   /* &how closely the values of the green pixels in the blue/green rows track the values of the green pixels in the red/green rows */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   544
"/    #define TIFFTAG_LINEARRESPONSELIMIT     50734   /* &non-linear encoding range */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   545
"/    #define TIFFTAG_CAMERASERIALNUMBER      50735   /* &camera's serial number */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   546
"/    #define TIFFTAG_LENSINFO                50736   /* info about the lens */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   547
"/    #define TIFFTAG_CHROMABLURRADIUS        50737   /* &chroma blur radius */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   548
"/    #define TIFFTAG_ANTIALIASSTRENGTH       50738   /* &relative strength of the camera's anti-alias filter */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   549
"/    #define TIFFTAG_SHADOWSCALE             50739   /* &used by Adobe Camera Raw */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   550
"/    #define TIFFTAG_DNGPRIVATEDATA          50740   /* &manufacturer's private data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   551
"/    #define TIFFTAG_MAKERNOTESAFETY         50741   /* &whether the EXIF MakerNote tag is safe to preserve along with the rest of the EXIF data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   552
"/    #define TIFFTAG_CALIBRATIONILLUMINANT1  50778   /* &illuminant 1 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   553
"/    #define TIFFTAG_CALIBRATIONILLUMINANT2  50779   /* &illuminant 2 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   554
"/    #define TIFFTAG_BESTQUALITYSCALE        50780   /* &best quality multiplier */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   555
"/    #define TIFFTAG_RAWDATAUNIQUEID         50781   /* &unique identifier for the raw image data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   556
"/    #define TIFFTAG_ORIGINALRAWFILENAME     50827   /* &file name of the original raw file */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   557
"/    #define TIFFTAG_ORIGINALRAWFILEDATA     50828   /* &contents of the original raw file */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   558
"/    #define TIFFTAG_ACTIVEAREA              50829   /* &active (non-masked) pixels of the sensor */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   559
"/    #define TIFFTAG_MASKEDAREAS             50830   /* &list of coordinates of fully masked pixels */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   560
"/    #define TIFFTAG_ASSHOTICCPROFILE        50831   /* &these two tags used to */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   561
"/    #define TIFFTAG_ASSHOTPREPROFILEMATRIX  50832   /* map cameras's color space into ICC profile space */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   562
"/    #define TIFFTAG_CURRENTICCPROFILE       50833   /* & */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   563
"/    #define TIFFTAG_CURRENTPREPROFILEMATRIX 50834   /* & */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   564
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   565
"/    /* tag 65535 is an undefined tag used by Eastman Kodak */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   566
"/    #define TIFFTAG_DCSHUESHIFTVALUES       65535   /* hue shift correction data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   567
"/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   568
"/    /*
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   569
"/     * The following are ``pseudo tags'' that can be used to control
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   570
"/     * codec-specific functionality.  These tags are not written to file.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   571
"/     * Note that these values start at 0xffff+1 so that they'll never
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   572
"/     * collide with Aldus-assigned tags.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   573
"/     *
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   574
"/     * If you want your private pseudo tags ``registered'' (i.e. added to
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   575
"/     * this file), please post a bug report via the tracking system at
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   576
"/     * http://www.remotesensing.org/libtiff/bugs.html with the appropriate
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   577
"/     * C definitions to add.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   578
"/     */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   579
"/    #define TIFFTAG_FAXMODE                 65536   /* Group 3/4 format control */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   580
"/    #define     FAXMODE_CLASSIC     0x0000          /* default, include RTC */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   581
"/    #define     FAXMODE_NORTC       0x0001          /* no RTC at end of data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   582
"/    #define     FAXMODE_NOEOL       0x0002          /* no EOL code at end of row */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   583
"/    #define     FAXMODE_BYTEALIGN   0x0004          /* byte align row */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   584
"/    #define     FAXMODE_WORDALIGN   0x0008          /* word align row */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   585
"/    #define     FAXMODE_CLASSF      FAXMODE_NORTC   /* TIFF Class F */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   586
"/    #define TIFFTAG_JPEGQUALITY             65537   /* Compression quality level */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   587
"/    /* Note: quality level is on the IJG 0-100 scale.  Default value is 75 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   588
"/    #define TIFFTAG_JPEGCOLORMODE           65538   /* Auto RGB<=>YCbCr convert? */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   589
"/    #define     JPEGCOLORMODE_RAW   0x0000          /* no conversion (default) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   590
"/    #define     JPEGCOLORMODE_RGB   0x0001          /* do auto conversion */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   591
"/    #define TIFFTAG_JPEGTABLESMODE          65539   /* What to put in JPEGTables */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   592
"/    #define     JPEGTABLESMODE_QUANT 0x0001         /* include quantization tbls */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   593
"/    #define     JPEGTABLESMODE_HUFF 0x0002          /* include Huffman tbls */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   594
"/    /* Note: default is JPEGTABLESMODE_QUANT | JPEGTABLESMODE_HUFF */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   595
"/    #define TIFFTAG_FAXFILLFUNC             65540   /* G3/G4 fill function */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   596
"/    #define TIFFTAG_PIXARLOGDATAFMT         65549   /* PixarLogCodec I/O data sz */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   597
"/    #define     PIXARLOGDATAFMT_8BIT        0       /* regular u_char samples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   598
"/    #define     PIXARLOGDATAFMT_8BITABGR    1       /* ABGR-order u_chars */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   599
"/    #define     PIXARLOGDATAFMT_11BITLOG    2       /* 11-bit log-encoded (raw) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   600
"/    #define     PIXARLOGDATAFMT_12BITPICIO  3       /* as per PICIO (1.0==2048) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   601
"/    #define     PIXARLOGDATAFMT_16BIT       4       /* signed short samples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   602
"/    #define     PIXARLOGDATAFMT_FLOAT       5       /* IEEE float samples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   603
"/    /* 65550-65556 are allocated to Oceana Matrix <dev@oceana.com> */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   604
"/    #define TIFFTAG_DCSIMAGERTYPE           65550   /* imager model & filter */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   605
"/    #define     DCSIMAGERMODEL_M3           0       /* M3 chip (1280 x 1024) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   606
"/    #define     DCSIMAGERMODEL_M5           1       /* M5 chip (1536 x 1024) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   607
"/    #define     DCSIMAGERMODEL_M6           2       /* M6 chip (3072 x 2048) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   608
"/    #define     DCSIMAGERFILTER_IR          0       /* infrared filter */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   609
"/    #define     DCSIMAGERFILTER_MONO        1       /* monochrome filter */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   610
"/    #define     DCSIMAGERFILTER_CFA         2       /* color filter array */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   611
"/    #define     DCSIMAGERFILTER_OTHER       3       /* other filter */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   612
"/    #define TIFFTAG_DCSINTERPMODE           65551   /* interpolation mode */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   613
"/    #define     DCSINTERPMODE_NORMAL        0x0     /* whole image, default */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   614
"/    #define     DCSINTERPMODE_PREVIEW       0x1     /* preview of image (384x256) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   615
"/    #define TIFFTAG_DCSBALANCEARRAY         65552   /* color balance values */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   616
"/    #define TIFFTAG_DCSCORRECTMATRIX        65553   /* color correction values */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   617
"/    #define TIFFTAG_DCSGAMMA                65554   /* gamma value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   618
"/    #define TIFFTAG_DCSTOESHOULDERPTS       65555   /* toe & shoulder points */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   619
"/    #define TIFFTAG_DCSCALIBRATIONFD        65556   /* calibration file desc */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   620
"/    /* Note: quality level is on the ZLIB 1-9 scale. Default value is -1 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   621
"/    #define TIFFTAG_ZIPQUALITY              65557   /* compression quality level */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   622
"/    #define TIFFTAG_PIXARLOGQUALITY         65558   /* PixarLog uses same scale */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   623
"/    /* 65559 is allocated to Oceana Matrix <dev@oceana.com> */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   624
"/    #define TIFFTAG_DCSCLIPRECTANGLE        65559   /* area of image to acquire */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   625
"/    #define TIFFTAG_SGILOGDATAFMT           65560   /* SGILog user data format */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   626
"/    #define     SGILOGDATAFMT_FLOAT         0       /* IEEE float samples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   627
"/    #define     SGILOGDATAFMT_16BIT         1       /* 16-bit samples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   628
"/    #define     SGILOGDATAFMT_RAW           2       /* uninterpreted data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   629
"/    #define     SGILOGDATAFMT_8BIT          3       /* 8-bit RGB monitor values */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   630
"/    #define TIFFTAG_SGILOGENCODE            65561 /* SGILog data encoding control*/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   631
"/    #define     SGILOGENCODE_NODITHER       0     /* do not dither encoded values*/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   632
"/    #define     SGILOGENCODE_RANDITHER      1     /* randomly dither encd values */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   633
"/    #define TIFFTAG_LZMAPRESET              65562   /* LZMA2 preset (compression level) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   634
"/    #define TIFFTAG_PERSAMPLE       65563   /* interface for per sample tags */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   635
"/    #define     PERSAMPLE_MERGED        0   /* present as a single value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   636
"/    #define     PERSAMPLE_MULTI         1   /* present as multiple values */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   637
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   638
    "/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   639
    "/ EXIF tags
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   640
    "/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   641
"/    #define EXIFTAG_EXPOSURETIME            33434   /* Exposure time */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   642
"/    #define EXIFTAG_FNUMBER                 33437   /* F number */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   643
"/    #define EXIFTAG_EXPOSUREPROGRAM         34850   /* Exposure program */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   644
"/    #define EXIFTAG_SPECTRALSENSITIVITY     34852   /* Spectral sensitivity */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   645
"/    #define EXIFTAG_ISOSPEEDRATINGS         34855   /* ISO speed rating */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   646
"/    #define EXIFTAG_OECF                    34856   /* Optoelectric conversion factor */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   647
"/    #define EXIFTAG_EXIFVERSION             36864   /* Exif version */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   648
"/    #define EXIFTAG_DATETIMEORIGINAL        36867   /* Date and time of original data generation */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   649
"/    #define EXIFTAG_DATETIMEDIGITIZED       36868   /* Date and time of digital data generation */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   650
"/    #define EXIFTAG_COMPONENTSCONFIGURATION 37121   /* Meaning of each component */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   651
"/    #define EXIFTAG_COMPRESSEDBITSPERPIXEL  37122   /* Image compression mode */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   652
"/    #define EXIFTAG_SHUTTERSPEEDVALUE       37377   /* Shutter speed */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   653
"/    #define EXIFTAG_APERTUREVALUE           37378   /* Aperture */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   654
"/    #define EXIFTAG_BRIGHTNESSVALUE         37379   /* Brightness */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   655
"/    #define EXIFTAG_EXPOSUREBIASVALUE       37380   /* Exposure bias */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   656
"/    #define EXIFTAG_MAXAPERTUREVALUE        37381   /* Maximum lens aperture */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   657
"/    #define EXIFTAG_SUBJECTDISTANCE         37382   /* Subject distance */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   658
"/    #define EXIFTAG_METERINGMODE            37383   /* Metering mode */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   659
"/    #define EXIFTAG_LIGHTSOURCE             37384   /* Light source */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   660
"/    #define EXIFTAG_FLASH                   37385   /* Flash */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   661
"/    #define EXIFTAG_FOCALLENGTH             37386   /* Lens focal length */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   662
"/    #define EXIFTAG_SUBJECTAREA             37396   /* Subject area */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   663
"/    #define EXIFTAG_MAKERNOTE               37500   /* Manufacturer notes */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   664
"/    #define EXIFTAG_USERCOMMENT             37510   /* User comments */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   665
"/    #define EXIFTAG_SUBSECTIME              37520   /* DateTime subseconds */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   666
"/    #define EXIFTAG_SUBSECTIMEORIGINAL      37521   /* DateTimeOriginal subseconds */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   667
"/    #define EXIFTAG_SUBSECTIMEDIGITIZED     37522   /* DateTimeDigitized subseconds */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   668
"/    #define EXIFTAG_FLASHPIXVERSION         40960   /* Supported Flashpix version */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   669
"/    #define EXIFTAG_COLORSPACE              40961   /* Color space information */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   670
"/    #define EXIFTAG_PIXELXDIMENSION         40962   /* Valid image width */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   671
"/    #define EXIFTAG_PIXELYDIMENSION         40963   /* Valid image height */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   672
"/    #define EXIFTAG_RELATEDSOUNDFILE        40964   /* Related audio file */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   673
"/    #define EXIFTAG_FLASHENERGY             41483   /* Flash energy */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   674
"/    #define EXIFTAG_SPATIALFREQUENCYRESPONSE 41484  /* Spatial frequency response */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   675
"/    #define EXIFTAG_FOCALPLANEXRESOLUTION   41486   /* Focal plane X resolution */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   676
"/    #define EXIFTAG_FOCALPLANEYRESOLUTION   41487   /* Focal plane Y resolution */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   677
"/    #define EXIFTAG_FOCALPLANERESOLUTIONUNIT 41488  /* Focal plane resolution unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   678
"/    #define EXIFTAG_SUBJECTLOCATION         41492   /* Subject location */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   679
"/    #define EXIFTAG_EXPOSUREINDEX           41493   /* Exposure index */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   680
"/    #define EXIFTAG_SENSINGMETHOD           41495   /* Sensing method */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   681
"/    #define EXIFTAG_FILESOURCE              41728   /* File source */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   682
"/    #define EXIFTAG_SCENETYPE               41729   /* Scene type */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   683
"/    #define EXIFTAG_CFAPATTERN              41730   /* CFA pattern */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   684
"/    #define EXIFTAG_CUSTOMRENDERED          41985   /* Custom image processing */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   685
"/    #define EXIFTAG_EXPOSUREMODE            41986   /* Exposure mode */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   686
"/    #define EXIFTAG_WHITEBALANCE            41987   /* White balance */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   687
"/    #define EXIFTAG_DIGITALZOOMRATIO        41988   /* Digital zoom ratio */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   688
"/    #define EXIFTAG_FOCALLENGTHIN35MMFILM   41989   /* Focal length in 35 mm film */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   689
"/    #define EXIFTAG_SCENECAPTURETYPE        41990   /* Scene capture type */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   690
"/    #define EXIFTAG_GAINCONTROL             41991   /* Gain control */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   691
"/    #define EXIFTAG_CONTRAST                41992   /* Contrast */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   692
"/    #define EXIFTAG_SATURATION              41993   /* Saturation */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   693
"/    #define EXIFTAG_SHARPNESS               41994   /* Sharpness */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   694
"/    #define EXIFTAG_DEVICESETTINGDESCRIPTION 41995  /* Device settings description */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   695
"/    #define EXIFTAG_SUBJECTDISTANCERANGE    41996   /* Subject distance range */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   696
"/    #define EXIFTAG_GAINCONTROL             41991   /* Gain control */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   697
"/    #define EXIFTAG_GAINCONTROL             41991   /* Gain control */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   698
"/    #define EXIFTAG_IMAGEUNIQUEID           42016   /* Unique image ID */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   699
392
7729a280960c handle bottom-to-top images (orientation==4)
Claus Gittinger <cg@exept.de>
parents: 359
diff changeset
   700
    "
7729a280960c handle bottom-to-top images (orientation==4)
Claus Gittinger <cg@exept.de>
parents: 359
diff changeset
   701
     self initialize
7729a280960c handle bottom-to-top images (orientation==4)
Claus Gittinger <cg@exept.de>
parents: 359
diff changeset
   702
    "
7729a280960c handle bottom-to-top images (orientation==4)
Claus Gittinger <cg@exept.de>
parents: 359
diff changeset
   703
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
   704
    "Modified: / 28-08-2017 / 00:46:15 / cg"
28
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
   705
! !
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
   706
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   707
!TIFFReader class methodsFor:'testing'!
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
   708
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   709
canRepresent:anImage
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   710
    "return true, if anImage can be represented in my file format.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   711
     Any image is supported."
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   712
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   713
    ^ true
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   714
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   715
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
   716
isValidImageFile:aFileName
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   717
    "return true, if aFileName contains a TIFF image"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   718
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   719
    |inStream bytes1_2 byte3 byte4 versionLow versionHi|
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
   720
11
1d0df18a7049 *** empty log message ***
claus
parents: 6
diff changeset
   721
    inStream := self streamReadingFile:aFileName.
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
   722
    inStream isNil ifTrue:[^ false].
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
   723
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   724
    bytes1_2 := inStream next:2.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   725
    byte3 := inStream nextByte.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   726
    byte4 := inStream nextByte.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   727
    inStream close.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   728
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   729
    ((bytes1_2 = 'II' "tiff") or:[bytes1_2 = 'PE' "mdi"]) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   730
        "/ intel byte order (lsb)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   731
        versionLow := byte3. versionHi := byte4.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   732
    ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   733
        ((bytes1_2 = 'MM' "tiff") or:[bytes1_2 = 'EP' "mdi"])  ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   734
            "/ motorola byte order (msb)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   735
            versionLow := byte4. versionHi := byte3.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   736
        ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   737
            ^ false
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   738
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   739
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   740
    versionHi == 0 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   741
        (versionLow == 42) ifTrue:[^ true].       "/ tiff
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   742
        (versionLow == 43) ifTrue:[^ true].       "/ bigtiff
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
   743
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   744
    ^ false.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   745
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   746
    "Modified: / 26-08-2017 / 15:31:08 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   747
! !
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   748
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   749
!TIFFReader methodsFor:'accessing'!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   750
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   751
decodeMetaTags:aBoolean
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   752
    "by default, extra meta tags (photoshop) are not decoded;
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   753
     set to true to get them in metatags"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   754
     
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   755
    decodeMetaTags := aBoolean.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   756
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   757
    "Modified (comment): / 27-08-2017 / 18:37:04 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   758
!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   759
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   760
loadFullResolutionImage:aBoolean
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   761
    "by default, the full-resolution dng image is not decoded;
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   762
     set to true to get it in the imageSequence"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   763
     
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   764
    loadFullResolutionImage := aBoolean.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   765
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   766
    "Created: / 27-08-2017 / 18:41:48 / cg"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   767
! !
3f9277473954 Initial revision
claus
parents:
diff changeset
   768
1762
55cf76514c8c method category rename
Claus Gittinger <cg@exept.de>
parents: 1759
diff changeset
   769
!TIFFReader methodsFor:'private-data reading'!
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   770
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   771
readAdobeDeflateTiffImageData
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   772
    ^ self readDeflateTiffImageData
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   773
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   774
    "Created: / 26-08-2017 / 14:44:35 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   775
    "Modified: / 27-08-2017 / 18:55:11 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   776
!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   777
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   778
readCCITT3RLETiffImageData
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   779
    ^ self fileFormatError:'ccitt G3 mod Huffman (rle) compression not implemented'
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   780
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
   781
    "Modified: / 3.2.1998 / 18:03:14 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   782
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   783
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   784
readCCITT3RLEWTiffImageData
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   785
    ^ self fileFormatError:'ccitt G3 mod Huffman (rlew) compression not implemented'.
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   786
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
   787
    "Modified: / 3.2.1998 / 18:03:30 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   788
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   789
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   790
readCCITTGroup3TiffImageData
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   791
    "not really tested - all I got is a single fax from NeXT step"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   792
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   793
    |bytesPerRow bitsPerRow compressedStrip nPlanes 
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   794
     stripNr       "{ Class: SmallInteger }"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   795
     offset        "{ Class: SmallInteger }"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   796
     row           "{ Class: SmallInteger }"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   797
     bytesPerStrip "{ Class: SmallInteger }" 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   798
     count dstIndex|
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   799
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   800
    nPlanes := samplesPerPixel.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   801
    (nPlanes ~~ 1) ifTrue:[
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   802
        (nPlanes == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   803
            (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   804
                ^ self fileFormatError:'only separate planes are supported'.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   805
            ].
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   806
            'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   807
            nPlanes := 1
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   808
        ] ifFalse:[
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   809
            ^ self fileFormatError:'only monochrome/greyscale ccitt3supported'.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   810
        ].   
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   811
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   812
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   813
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   814
    ].
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   815
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   816
"/    (rowsPerStrip ~~ 1) ifTrue:[
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   817
"/        ^ self fileFormatError:'currently require rowsPerStrip to be 1'.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   818
"/    ].
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   819
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   820
    "/ 'TIFFReader: decompressing CCITT-3 ...' infoPrintNL.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   821
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   822
    bitsPerRow := width * (bitsPerSample at:1).
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   823
    bytesPerRow := bitsPerRow // 8.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   824
    ((bitsPerRow \\ 8) ~~ 0) ifTrue:[
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
   825
        bytesPerRow := bytesPerRow + 1
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   826
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   827
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   828
    data := ByteArray new:(bytesPerRow * height).
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   829
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   830
    "/ if the number of rows per strip is unknown (-1),
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   831
    "/ make it one big strip and decompress that
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   832
    rowsPerStrip = 16rFFFFFFFF ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   833
        self assert:(stripByteCounts size == 1).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   834
        count := stripByteCounts sum.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   835
        compressedStrip := ByteArray uninitializedNew:count.
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   836
        self positionToStrip:1.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   837
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   838
        (inStream nextBytes:count into:compressedStrip) == count ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   839
            self error:'short read'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   840
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   841
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   842
        compressedStrip := compressedStrip copyFrom:16r227.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   843
        
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   844
        dstIndex := self class 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   845
                    _decompressCCITT3From:compressedStrip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   846
                    count:count
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   847
                    into:data
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   848
                    startingAt:1.
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   849
        ^ self 
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   850
    ].
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   851
    
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   852
    compressedStrip := ByteArray uninitializedNew:bytesPerRow.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   853
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   854
    offset := 1.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   855
    stripNr := 1.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   856
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   857
    row := 1.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   858
    bytesPerStrip := bytesPerRow * rowsPerStrip.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   859
    [row <= height] whileTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   860
        self positionToStrip:stripNr.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   861
        count := stripByteCounts at:stripNr.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   862
        (inStream nextBytes:count into:compressedStrip) == count ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   863
            self error:'short read'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   864
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   865
        dstIndex := self class 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   866
                    _decompressCCITT3From:compressedStrip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   867
                    count:count
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   868
                    into:data
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   869
                    startingAt:offset
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   870
                    count:width. "/ is this correct? - I think, that should be width*rowsPerStrip 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   871
        offset := offset + bytesPerStrip.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   872
        row := row + rowsPerStrip.
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
   873
        stripNr := stripNr + 1.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   874
    ]
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
   875
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   876
    "
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   877
     TIFFReader fromFile:'/Users/cg/DownloadsUnsaved/image_software/libtiffpic/g3test.tif'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   878
    "
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   879
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   880
    "Modified: / 27-08-2017 / 15:37:51 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   881
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   882
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   883
readCCITTGroup4TiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
   884
    ^ self fileFormatError:'ccitt group4 fax compression not implemented'.
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   885
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
   886
    "Modified: / 3.2.1998 / 18:04:34 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   887
!
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   888
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   889
readCCITTRLEWTiffImageData
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   890
    ^ self fileFormatError:'ccitt mod Huffman (rlew) compression not implemented'
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   891
!
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   892
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
   893
readDCSTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
   894
    ^ self fileFormatError:'dcs compression not implemented'.
329
5fb99e0734e4 handle empty character-strings
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
   895
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
   896
    "Modified: / 3.2.1998 / 18:04:44 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   897
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   898
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
   899
readDeflateTiffImageData
3987
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   900
    self readImageDataUsingDecompresor:
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   901
        [:inBytes :inCount :outBytes :outOffset :outCount |
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   902
            |zlibReader|
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   903
            
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   904
            zlibReader := ZipStream readOpenAsZipStreamOn:(inBytes readStream) suppressHeaderAndChecksum:false.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   905
            zlibReader binary.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   906
            zlibReader next:outCount into:outBytes startingAt:outOffset.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   907
            outCount.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   908
        ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   909
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   910
"/    |bytesPerRowIn bytesPerRow nPlanes overAllBytes
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   911
"/     bytesPerStrip "{ Class: SmallInteger }"
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   912
"/     nBytes        "{ Class: SmallInteger }"
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   913
"/     stripNr       "{ Class: SmallInteger }"
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   914
"/     offset        "{ Class: SmallInteger }"
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   915
"/     row           "{ Class: SmallInteger }" 
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   916
"/     zlibReader nread msb
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   917
"/     convertFloats convertDoubles conversionBuffer|
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   918
"/
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   919
"/    nPlanes := samplesPerPixel.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   920
"/    convertFloats := convertDoubles := false.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   921
"/    
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   922
"/    (nPlanes >= 3) ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   923
"/        bytesPerRowIn := width * ((bitsPerSample sum + 7) // 8).
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   924
"/        (bitsPerSample conform:[:each | each == 8]) ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   925
"/            sampleFormat == SAMPLEFORMAT_UINT ifFalse:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   926
"/                ^ self fileFormatError:'unsupported sample format'.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   927
"/            ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   928
"/        ] ifFalse:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   929
"/            sampleFormat == SAMPLEFORMAT_IEEEFP ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   930
"/                nPlanes == 3 ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   931
"/                    (bitsPerSample conform:[:each | each == 64]) ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   932
"/                        convertDoubles := true.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   933
"/                        bytesPerRow := width * nPlanes.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   934
"/                        bitsPerSample := #(8 8 8).
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   935
"/                    ] ifFalse:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   936
"/                        (bitsPerSample conform:[:each | each == 32]) ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   937
"/                            convertFloats := true.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   938
"/                            bytesPerRow := width * nPlanes.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   939
"/                            bitsPerSample := #(8 8 8).
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   940
"/                        ] ifFalse:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   941
"/                            ^ self fileFormatError:'only 64/64/64 bits/sample are supported with IEEE_FP samples'.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   942
"/                        ].    
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   943
"/                    ].    
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   944
"/                ] ifFalse:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   945
"/                    ^ self fileFormatError:'only support 3 planes with IEEE_FP sample format'.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   946
"/                ]    
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   947
"/            ] ifFalse:[    
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   948
"/                ^ self fileFormatError:'unsupported sample format'.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   949
"/            ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   950
"/        ]
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   951
"/    ] ifFalse:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   952
"/        (nPlanes == 2) ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   953
"/            (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   954
"/                ^ self fileFormatError:'only separate planes are supported'.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   955
"/            ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   956
"/            'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   957
"/            nPlanes := 1
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   958
"/        ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   959
"/        (nPlanes == 1) ifFalse:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   960
"/            ^ self fileFormatError:'unsupported nPlanes: ' , nPlanes printString, '; only 3-sample rgb / monochrome supported'.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   961
"/        ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   962
"/        bytesPerRowIn := (width * (bitsPerSample at:1) + 7) // 8.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   963
"/    ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   964
"/    stripRowCounts notNil ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   965
"/        ^ self fileFormatError:'stripRowCounts not supported'.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   966
"/    ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   967
"/
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   968
"/    "/ 'TIFFReader: decompressing Deflate ...' infoPrintNL.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   969
"/
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   970
"/    bytesPerRow isNil ifTrue:[ bytesPerRow := bytesPerRowIn ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   971
"/    
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   972
"/    overAllBytes := bytesPerRow * height.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   973
"/    data := ByteArray new:overAllBytes.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   974
"/    (convertFloats or:[convertDoubles]) ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   975
"/        conversionBuffer := ByteArray new:(bytesPerRowIn * rowsPerStrip).
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   976
"/    ].    
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   977
"/    
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   978
"/    offset := 1.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   979
"/    stripNr := 0.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   980
"/
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   981
"/    row := 1.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   982
"/    bytesPerStrip := bytesPerRow * rowsPerStrip.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   983
"/
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   984
"/    [row <= height] whileTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   985
"/        stripNr := stripNr + 1.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   986
"/        self positionToStrip:stripNr.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   987
"/        nBytes := stripByteCounts at:stripNr.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   988
"/        
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   989
"/        zlibReader := ZipStream readOpenAsZipStreamOn:inStream suppressHeaderAndChecksum:false.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   990
"/        zlibReader binary.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   991
"/
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   992
"/        conversionBuffer notNil ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   993
"/            nread := zlibReader next:nBytes into:conversionBuffer startingAt:1.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   994
"/            msb := (byteOrder == #msb).
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   995
"/            convertFloats ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   996
"/                |i|
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   997
"/
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   998
"/                self assert:(nread \\ 4) == 0.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
   999
"/                i := 0.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1000
"/                1 to:nread-1 by:4 do:[:iF |
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1001
"/                    |dVal byteVal|
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1002
"/                    dVal := conversionBuffer floatAt:iF MSB:msb.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1003
"/                    "/ rescale from 0..1 to 0..255
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1004
"/                    byteVal := (dVal * 255) asInteger clampBetween:0 and:255.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1005
"/                    data at:offset+i put:byteVal.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1006
"/                    i := i + 1.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1007
"/                ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1008
"/            ] ifFalse:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1009
"/                convertDoubles ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1010
"/                    |i|
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1011
"/                    
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1012
"/                    self assert:(nread \\ 8) == 0.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1013
"/                    i := 0.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1014
"/                    1 to:nread-1 by:8 do:[:iF |
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1015
"/                        |dVal byteVal|
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1016
"/                        dVal := conversionBuffer doubleAt:iF MSB:msb.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1017
"/                        "/ rescale from 0..1 to 0..255
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1018
"/                        byteVal := (dVal * 255) asInteger clampBetween:0 and:255.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1019
"/                        data at:offset+i put:byteVal.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1020
"/                        i := i + 1.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1021
"/                    ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1022
"/                ]
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1023
"/            ].    
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1024
"/        ] ifFalse:[    
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1025
"/            nread := zlibReader next:nBytes into:data startingAt:offset.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1026
"/        ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1027
"/        
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1028
"/        offset := offset + bytesPerStrip.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1029
"/        row := row + rowsPerStrip
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1030
"/    ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1031
"/
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1032
"/    (predictor ~~ 1) ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1033
"/        (predictor == 2) ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1034
"/            self class decodeDelta:nPlanes in:data width:width height:height
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1035
"/        ] ifFalse:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1036
"/            ^ self fileFormatError:'unsupported predictor'
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1037
"/        ].    
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1038
"/    ]
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1039
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1040
    "Modified (format): / 28-08-2017 / 03:06:39 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1041
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1042
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1043
readImageDataUsingDecompresor:decompressorBlock
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1044
    |bytesPerRowIn bytesPerRow nPlanes overAllBytes
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1045
     nBytes        "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1046
     stripNr       "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1047
     offset        "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1048
     row           "{ Class: SmallInteger }" 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1049
     msb
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1050
     convert convertFloats convertDoubles convertHalfFloats 
3987
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1051
     swapInt16s convertFillOrder
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1052
     inBuffer conversionBuffer floats nDecompressed 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1053
     rowsInThisStrip bytesInThisStrip|
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1054
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1055
    nPlanes := samplesPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1056
    convert := convertFloats := convertDoubles := convertHalfFloats := false.
3987
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1057
    swapInt16s := convertFillOrder := false.
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1058
    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1059
    (nPlanes >= 3) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1060
        (planarConfiguration ~~ PLANARCONFIG_CONTIG) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1061
            ^ self fileFormatError:'only non separate planes are supported with 3 or 4 planes'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1062
        ].
3987
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1063
        (nPlanes > 4) ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1064
            photometric == #cmyk ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1065
                "/ ignore alpha
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1066
                'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1067
                nPlanes := samplesPerPixel := 4.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1068
                bitsPerSample := bitsPerSample copyTo:4.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1069
            ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1070
        ].
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1071
        
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1072
        bytesPerRowIn := width * ((bitsPerSample sum + 7) // 8).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1073
        sampleFormat == SAMPLEFORMAT_UINT ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1074
            (bitsPerSample conform:[:each | each == 8]) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1075
                "/ ok
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1076
            ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1077
                (bitsPerSample conform:[:each | each == 16]) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1078
                    "/ ok
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1079
                ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1080
                    ^ self fileFormatError:'only 8 or 16 bits/channel are supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1081
                ]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1082
            ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1083
        ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1084
            sampleFormat == SAMPLEFORMAT_IEEEFP ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1085
                nPlanes == 3 ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1086
                    (bitsPerSample conform:[:each | each == 64]) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1087
                        convertDoubles := convert := true.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1088
                        bytesPerRow := width * nPlanes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1089
                        bitsPerSample := #(8 8 8).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1090
                    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1091
                        (bitsPerSample conform:[:each | each == 32]) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1092
                            convertFloats := convert := true.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1093
                            bytesPerRow := width * nPlanes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1094
                            bitsPerSample := #(8 8 8).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1095
                        ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1096
                            (bitsPerSample conform:[:each | each == 16]) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1097
                                convertHalfFloats := convert := true.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1098
                                bytesPerRow := width * nPlanes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1099
                                bitsPerSample := #(8 8 8).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1100
                            ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1101
                                ^ self fileFormatError:'only 16, 32 or 64 bits/sample are supported with IEEE_FP samples'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1102
                            ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1103
                        ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1104
                    ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1105
                ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1106
                    ^ self fileFormatError:'only support 3 planes with IEEE_FP sample format'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1107
                ]    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1108
            ] ifFalse:[    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1109
                ^ self fileFormatError:'unsupported sample format'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1110
            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1111
        ]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1112
    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1113
        (nPlanes == 2) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1114
            (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1115
                ^ self fileFormatError:'only separate planes are supported with 2 planes'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1116
            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1117
            'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1118
            nPlanes := 1
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1119
        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1120
        (nPlanes == 1) ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1121
            ^ self fileFormatError:'unsupported nPlanes: ' , nPlanes printString, '; only 3-sample rgb / monochrome supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1122
        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1123
        bytesPerRowIn := (width * (bitsPerSample at:1) + 7) // 8.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1124
        (bitsPerSample at:1) == 16 ifTrue:[
3987
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1125
            byteOrder ~~ #msb ifTrue:[
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1126
"/                swapInt16s := true.
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1127
            ].    
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1128
        ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1129
    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1130
    fillOrder ~~ #msb ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1131
        (bitsPerSample conform:[:n | n == 8]) ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1132
            ^ self fileFormatError:'unsupported bitsPerSample with lsb fillOrder'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1133
        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1134
        convertFillOrder := true.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1135
    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1136
    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1137
    bytesPerRow isNil ifTrue:[ bytesPerRow := bytesPerRowIn ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1138
    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1139
    overAllBytes := bytesPerRow * height.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1140
    data := ByteArray new:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1141
    convert ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1142
        conversionBuffer := ByteArray new:(bytesPerRowIn * rowsPerStrip).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1143
    ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1144
    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1145
    offset := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1146
    stripNr := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1147
    row := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1148
    msb := (byteOrder == #msb).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1149
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1150
    [row <= height] whileTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1151
        self positionToStrip:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1152
        nBytes := stripByteCounts at:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1153
        rowsInThisStrip := stripRowCounts notNil 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1154
                                ifTrue:[stripRowCounts at:stripNr]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1155
                                ifFalse:[rowsPerStrip].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1156
        bytesInThisStrip := bytesPerRowIn * rowsInThisStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1157
        
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1158
        "/ don verify; the last strip is shorter                        
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1159
        "/ compression == 1 ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1160
        "/    self assert:( nBytes == (bytesPerRowIn * rowsInThisStrip) ).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1161
        "/ ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1162
        
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1163
        conversionBuffer notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1164
            decompressorBlock notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1165
                inBuffer := ByteArray new:nBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1166
                (inStream nextBytes:nBytes into:inBuffer startingAt:1) == nBytes ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1167
                    self fileFormatError:'short read'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1168
                ]. 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1169
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1170
                nDecompressed := decompressorBlock 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1171
                                    value:inBuffer value:nBytes 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1172
                                    value:conversionBuffer value:1
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1173
                                    value:bytesInThisStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1174
            ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1175
                (nDecompressed := inStream nextBytes:nBytes into:conversionBuffer startingAt:1) == nBytes ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1176
                    self fileFormatError:'short read'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1177
                ]. 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1178
            ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1179
            convertFloats ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1180
                self assert:(nDecompressed \\ 4) == 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1181
                floats := FloatArray new:(nDecompressed // 4).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1182
            ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1183
                convertDoubles ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1184
                    self assert:(nDecompressed \\ 8) == 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1185
                    floats := DoubleArray new:(nDecompressed // 8).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1186
                ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1187
                    convertHalfFloats ifTrue:[  
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1188
                        self assert:(nDecompressed \\ 2) == 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1189
                        floats := HalfFloatArray new:(nDecompressed // 2).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1190
                    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1191
                ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1192
            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1193
            floats replaceBytesWith:conversionBuffer.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1194
            1 to:floats size do:[:i |
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1195
                |dVal byteVal|
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1196
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1197
                dVal := floats at:i.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1198
                "/ rescale from 0..1 to 0..255
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1199
                byteVal := (dVal * 255) asInteger clampBetween:0 and:255.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1200
                data at:offset+i-1 put:byteVal.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1201
            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1202
        ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1203
            decompressorBlock notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1204
                inBuffer := ByteArray new:nBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1205
                (inStream nextBytes:nBytes into:inBuffer startingAt:1) == nBytes ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1206
                    self fileFormatError:'short read'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1207
                ]. 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1208
                nDecompressed := decompressorBlock 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1209
                                    value:inBuffer value:nBytes 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1210
                                    value:data value:offset 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1211
                                    value:bytesInThisStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1212
            ] ifFalse:[    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1213
                (inStream nextBytes:nBytes into:data startingAt:offset) == nBytes ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1214
                    self fileFormatError:'short read'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1215
                ]. 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1216
            ]. 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1217
        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1218
        
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1219
        offset := offset + bytesInThisStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1220
        row := row + rowsInThisStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1221
        stripNr := stripNr + 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1222
    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1223
3987
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1224
    swapInt16s ifTrue:[
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1225
        data swapBytes
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1226
    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1227
    convertFillOrder ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1228
        1 to:data size do:[:i |
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1229
            data at:i put:(data at:i) bitReversed8.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1230
        ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1231
    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1232
    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1233
    (predictor ~~ 1) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1234
        (predictor == 2) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1235
            self class decodeDelta:nPlanes in:data width:width height:height
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1236
        ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1237
            ^ self fileFormatError:'unsupported predictor'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1238
        ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1239
    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1240
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1241
    "Created: / 27-08-2017 / 22:48:17 / cg"
3987
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1242
    "Modified: / 28-08-2017 / 03:12:44 / cg"
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1243
!
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1244
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1245
readJBIGTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1246
    ^ self fileFormatError:'jbig compression not implemented'.
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1247
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1248
    "Modified: / 3.2.1998 / 18:05:04 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1249
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1250
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1251
readJPEGTiffImageData
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1252
    |nBytes compressedData|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1253
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1254
    stripByteCounts size == 1 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1255
        "/ single strip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1256
        self positionToStrip:1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1257
        nBytes := stripByteCounts at:1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1258
        compressedData := ByteArray uninitializedNew:nBytes.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1259
        (inStream nextBytes:nBytes into:compressedData) == nBytes ifFalse:[ self error:'short read' ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1260
        "/ pngOrJPGImage := JPEGReader fromStream:compressedData readStream.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1261
        "/ self halt.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1262
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1263
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1264
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1265
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1266
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1267
    ^ self fileFormatError:'jpeg (old) compression not implemented'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1268
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1269
    "Modified: / 27-08-2017 / 15:38:23 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1270
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1271
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1272
readLZWTiffImageData
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1273
    self readImageDataUsingDecompresor:
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1274
        [:inBytes :inCount :outBytes :outOffset :outCount |
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1275
            self class 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1276
                decompressLZWFrom:inBytes count:inCount
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1277
                into:outBytes startingAt:outOffset.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1278
            outCount.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1279
        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1280
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1281
"/    "read LZW compressed tiff data; 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1282
"/     this method only handles 8+8+8 and 8+8+8+8 rgb 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1283
"/     and 2bit or 2+2bit greyscale images.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1284
"/     For 2+2bit greyscale images, the alpha plane is ignored.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1285
"/     (maybe other formats work also - but simply not tested)"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1286
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1287
"/    |bytesPerRow compressedStrip nPlanes overAllBytes
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1288
"/     bytesPerStrip "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1289
"/     nBytes        "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1290
"/     prevSize      "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1291
"/     stripNr       "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1292
"/     offset        "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1293
"/     row           "{ Class: SmallInteger }" |
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1294
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1295
"/    nPlanes := samplesPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1296
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1297
"/    (nPlanes >= 3) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1298
"/        (bitsPerSample conform:[:each | each == 8]) ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1299
"/            ^ self fileFormatError:'only 8/8/8(/8) bits/sample are supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1300
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1301
"/        bytesPerRow := width * samplesPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1302
"/    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1303
"/        (nPlanes == 2) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1304
"/            (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1305
"/                ^ self fileFormatError:'only separate planes are supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1306
"/            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1307
"/            'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1308
"/            nPlanes := 1
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1309
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1310
"/        (nPlanes == 1) ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1311
"/            ^ self fileFormatError:'unsupported nPlanes: ' , nPlanes printString, '; only 3-sample rgb / monochrome supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1312
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1313
"/        bytesPerRow := (width * (bitsPerSample at:1) + 7) // 8.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1314
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1315
"/    stripRowCounts notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1316
"/        ^ self fileFormatError:'stripRowCounts not supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1317
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1318
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1319
"/    "/ 'TIFFReader: decompressing LZW ...' infoPrintNL.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1320
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1321
"/    overAllBytes := bytesPerRow * height.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1322
"/    bytesPerRow == width ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1323
"/        data := ByteArray uninitializedNew:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1324
"/    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1325
"/        data := ByteArray new:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1326
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1327
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1328
"/    offset := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1329
"/    stripNr := 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1330
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1331
"/    row := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1332
"/    bytesPerStrip := bytesPerRow * rowsPerStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1333
"/    prevSize := 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1334
"/    [row <= height] whileTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1335
"/        stripNr := stripNr + 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1336
"/        self positionToStrip:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1337
"/        nBytes := stripByteCounts at:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1338
"/        (nBytes > prevSize) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1339
"/            compressedStrip := ByteArray uninitializedNew:nBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1340
"/            prevSize := nBytes
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1341
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1342
"/        (inStream nextBytes:nBytes into:compressedStrip) == nBytes ifFalse:[ self fileFormatError:'short file' ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1343
"/        self class 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1344
"/            decompressLZWFrom:compressedStrip count:nBytes
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1345
"/            into:data startingAt:offset.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1346
"/        offset := offset + bytesPerStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1347
"/        row := row + rowsPerStrip
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1348
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1349
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1350
"/    predictor ~~ 1 ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1351
"/        (predictor == 2) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1352
"/            self class decodeDelta:nPlanes in:data width:width height:height
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1353
"/        ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1354
"/            self fileFormatError:'unsupported predictor'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1355
"/        ]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1356
"/    ]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1357
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1358
    "Modified: / 27-08-2017 / 22:58:36 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1359
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1360
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1361
readNeXTJPEGTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1362
    ^ self fileFormatError:'next jpeg compression not implemented'.
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  1363
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1364
    "Modified: / 3.2.1998 / 18:10:45 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1365
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1366
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1367
readNeXTRLE2TiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1368
    ^ self fileFormatError:'next 2bit rle compression not implemented'.
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  1369
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1370
    "Modified: / 3.2.1998 / 18:10:54 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1371
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1372
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1373
readNewJPEGTiffImageData
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1374
    ^ self fileFormatError:'new jpeg compression not implemented'.
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1375
!
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1376
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1377
readPackbitsTiffImageData
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1378
    self readImageDataUsingDecompresor:
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1379
        [:inBytes :inCount :outBytes :outOffset :outCount |
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1380
            self class decompressTiffPackBitsFrom:inBytes to:outBytes at:outOffset count:outCount.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1381
        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1382
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1383
"/    "this has only been tested with monochrome images"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1384
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1385
"/    |bytesPerRow bitsPerRow nPlanes 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1386
"/     stripNr       "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1387
"/     offset        "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1388
"/     row           "{ Class: SmallInteger }" 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1389
"/     nBytes        "{ Class: SmallInteger }" bitsPerPixel overAllBytes buffer|
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1390
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1391
"/    nPlanes := samplesPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1392
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1393
"/    "only support 1-sample/pixel,
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1394
"/     with alpha - if separate planes,
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1395
"/     or rgb - if non separate planes and no alpha"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1396
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1397
"/    (nPlanes == 2) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1398
"/        (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1399
"/            ^ self fileFormatError:'with alpha, only separate planes supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1400
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1401
"/        'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1402
"/        nPlanes := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1403
"/        bitsPerPixel := bitsPerSample at:1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1404
"/        bitsPerSample := Array with:bitsPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1405
"/        samplesPerPixel := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1406
"/    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1407
"/        (nPlanes == 3) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1408
"/            (planarConfiguration ~~ PLANARCONFIG_CONTIG) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1409
"/                ^ self fileFormatError:'only non separate planes supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1410
"/            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1411
"/            bitsPerSample ~= #(8 8 8) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1412
"/                ^ self fileFormatError:'only 8/8/8 rgb images supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1413
"/            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1414
"/            bitsPerPixel := 24
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1415
"/        ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1416
"/            (nPlanes ~~ 1) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1417
"/                ^ self fileFormatError:('format (nplanes == %1) not supported' bindWith:nPlanes).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1418
"/            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1419
"/            bitsPerPixel := bitsPerSample at:1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1420
"/        ]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1421
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1422
"/    stripRowCounts notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1423
"/        ^ self fileFormatError:'stripRowCounts not supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1424
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1425
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1426
"/    bitsPerRow := width * bitsPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1427
"/    bytesPerRow := bitsPerRow // 8.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1428
"/    ((bitsPerRow \\ 8) ~~ 0) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1429
"/        bytesPerRow := bytesPerRow + 1
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1430
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1431
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1432
"/    overAllBytes := bytesPerRow * height.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1433
"/    bytesPerRow == width ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1434
"/        data := ByteArray uninitializedNew:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1435
"/    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1436
"/        data := ByteArray new:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1437
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1438
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1439
"/    offset := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1440
"/    stripNr := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1441
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1442
"/    buffer := nil.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1443
"/    row := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1444
"/    [row <= height] whileTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1445
"/        nBytes := stripByteCounts at:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1446
"/        self positionToStrip:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1447
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1448
"/        nBytes > buffer size ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1449
"/            "/ realloc
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1450
"/            buffer := ByteArray uninitializedNew:nBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1451
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1452
"/        (inStream nextBytes:nBytes into:buffer) == nBytes ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1453
"/            self fileFormatError:'short file read'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1454
"/        ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1455
"/        self class decompressTiffPackBitsFrom:buffer to:data at:offset count:(bytesPerRow * rowsPerStrip).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1456
"/        "/ nDecompressedBytes := self class decompressPackBits:nBytes from:buffer to:data startingAt:offset.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1457
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1458
"/        offset := offset + (bytesPerRow * rowsPerStrip).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1459
"/        row := row + rowsPerStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1460
"/        stripNr := stripNr + 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1461
"/    ]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1462
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1463
    "Modified: / 28-08-2017 / 00:24:21 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1464
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1465
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1466
readPixarFilmTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1467
    ^ self fileFormatError:'pixar film compression not implemented'.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1468
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1469
    "Modified: / 3.2.1998 / 18:11:45 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1470
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1471
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1472
readPixarLogTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1473
    ^ self fileFormatError:'pixar log compression not implemented'.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  1474
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1475
    "Modified: / 3.2.1998 / 18:11:53 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1476
!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1477
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1478
readSGI24TiffImageData
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1479
    ^ self fileFormatError:'SGI 24-bit Log Luminance encoding not implemented' .
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1480
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1481
    "Created: / 25-08-2017 / 11:17:25 / cg"
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1482
!
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1483
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1484
readSGI32TiffImageData
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1485
    ^ self fileFormatError:'SGI 32-bit Log Luminance encoding not implemented' .
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1486
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1487
    "Created: / 25-08-2017 / 11:17:21 / cg"
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1488
!
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1489
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1490
readThunderScanTiffImageData
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1491
    |bytesPerRow compressedStrip nPlanes overAllBytes
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1492
     bytesPerStrip "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1493
     nBytes        "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1494
     prevSize      "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1495
     stripNr       "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1496
     offset        "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1497
     row           "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1498
     pixelIndex
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1499
     i even gen highNibble lastPixel d1 d2 d3|
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1500
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1501
    nPlanes := samplesPerPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1502
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1503
    (nPlanes == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1504
        (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1505
            ^ self fileFormatError:'only separate planes are supported'.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1506
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1507
        'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1508
        nPlanes := 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1509
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1510
    (nPlanes == 1) ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1511
        ^ self fileFormatError:'unsupported nPlanes: ' , nPlanes printString.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1512
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1513
    (bitsPerSample at:1) == 4 ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1514
        ^ self fileFormatError:('unsupported bitsPerSample: %1 (only 4 supported)' bindWith:(bitsPerSample at:1)).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1515
    ].    
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1516
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1517
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1518
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1519
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1520
    bytesPerRow := (width * (bitsPerSample at:1) + 7) // 8.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1521
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1522
    "/ 'TIFFReader: decompressing ThunderScan ...' infoPrintNL.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1523
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1524
    overAllBytes := bytesPerRow * height.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1525
    bytesPerRow == width ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1526
        data := ByteArray uninitializedNew:overAllBytes.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1527
    ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1528
        data := ByteArray new:overAllBytes.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1529
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1530
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1531
    offset := 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1532
    stripNr := 0.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1533
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1534
    gen := [:pixel | 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1535
                even ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1536
                    highNibble := pixel. 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1537
                    even := false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1538
                ] ifFalse:[    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1539
                    data at:pixelIndex put:((highNibble bitShift:4) bitOr:pixel).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1540
                    pixelIndex := pixelIndex + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1541
                    even := true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1542
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1543
            ].    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1544
    even := true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1545
    lastPixel := 0.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1546
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1547
    row := 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1548
    bytesPerStrip := bytesPerRow * rowsPerStrip.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1549
    prevSize := 0.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1550
    [row <= height] whileTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1551
        stripNr := stripNr + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1552
        self positionToStrip:stripNr.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1553
        nBytes := stripByteCounts at:stripNr.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1554
        (nBytes > prevSize) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1555
            compressedStrip := ByteArray uninitializedNew:nBytes.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1556
            prevSize := nBytes
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1557
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1558
        (inStream nextBytes:nBytes into:compressedStrip) == nBytes ifFalse:[ self error:'short read' ].
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1559
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1560
        "/ RLE decode... (see http://fileformats.archiveteam.org/wiki/ThunderScan_compression)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1561
        i := 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1562
        pixelIndex := offset.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1563
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1564
        [i <= nBytes] whileTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1565
            |code|
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1566
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1567
            code := compressedStrip at:i.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1568
            i := i + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1569
            code >= 2r11000000 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1570
                "/ a single pixel
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1571
                lastPixel := code bitAnd:2r00111111.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1572
                self assert:(lastPixel <= 2r1111).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1573
                
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1574
                gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1575
            ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1576
                code >= 2r10000000 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1577
                    "/ three bit deltas (2 pixels)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1578
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1579
                    d1 := (code rightShift:3) bitAnd:2r111.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1580
                    d2 := code bitAnd:2r111.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1581
                    d1 ~~ 4 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1582
                        lastPixel := lastPixel + (#(0 1 2 3 0 -3 -2 -1) at:d1+1).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1583
                        gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1584
                    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1585
                    d2 ~~ 4 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1586
                        lastPixel := lastPixel + (#(0 1 2 3 0 -3 -2 -1) at:d2+1).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1587
                        gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1588
                    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1589
                ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1590
                    code >= 2r01000000 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1591
                        "/ two bit deltas (3 pixels)    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1592
                        d1 := (code rightShift:4) bitAnd:2r11.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1593
                        d2 := (code rightShift:2) bitAnd:2r11.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1594
                        d3 := code bitAnd:2r11.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1595
                        d1 ~~ 2 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1596
                            lastPixel := lastPixel + (#(0 1 0 -1) at:d1+1).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1597
                            gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1598
                        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1599
                        d2 ~~ 2 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1600
                            lastPixel := lastPixel + (#(0 1 0 -1) at:d2+1).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1601
                            gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1602
                        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1603
                        d3 ~~ 2 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1604
                            lastPixel := lastPixel + (#(0 1 0 -1) at:d3+1).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1605
                            gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1606
                        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1607
                    ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1608
                        code timesRepeat:[ gen value:lastPixel ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1609
                    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1610
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1611
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1612
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1613
        "/ self assert:(pixelIndex == (offset + bytesPerStrip)).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1614
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1615
        offset := offset + bytesPerStrip.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1616
        row := row + rowsPerStrip
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1617
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1618
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1619
    (predictor ~~ 1) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1620
        ^ self fileFormatError:('unsupported predictor: %1' bindWith:predictor).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1621
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1622
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1623
    "Modified: / 27-08-2017 / 15:38:47 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1624
!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1625
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1626
readTiffImageData
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1627
    (compression == COMPRESSION_NONE " 1 " ) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1628
        self readUncompressedTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1629
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1630
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1631
    (compression == COMPRESSION_CCITTRLE " 2 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1632
        self readCCITT3RLETiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1633
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1634
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1635
    (compression == COMPRESSION_CCITTFAX3 " 3 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1636
        self readCCITTGroup3TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1637
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1638
    ]. 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1639
    (compression == COMPRESSION_CCITTFAX4 " 4 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1640
        self readCCITTGroup4TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1641
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1642
    ]. 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1643
    (compression == COMPRESSION_LZW " 5 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1644
        self readLZWTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1645
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1646
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1647
    (compression == COMPRESSION_OJPEG " 6 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1648
        self readJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1649
        ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1650
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1651
    (compression == COMPRESSION_JPEG " 7 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1652
        self readNewJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1653
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1654
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1655
    (compression == COMPRESSION_ADOBE_DEFLATE " 8 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1656
        self readAdobeDeflateTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1657
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1658
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1659
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1660
    (compression == COMPRESSION_NEXT " 32766 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1661
        self readNeXTRLE2TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1662
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1663
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1664
    (compression == COMPRESSION_CCITTRLEW " 32771 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1665
        self readCCITTRLEWTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1666
        ^ self
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1667
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1668
    (compression == COMPRESSION_PACKBITS " 32773 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1669
        self readPackbitsTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1670
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1671
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1672
    (compression == COMPRESSION_THUNDERSCAN " 32809 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1673
        self readThunderScanTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1674
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1675
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1676
    (compression == COMPRESSION_PIXARFILM " 32908 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1677
        self readPixarFilmTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1678
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1679
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1680
    (compression == COMPRESSION_PIXARLOG " 32909 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1681
        self readPixarLogTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1682
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1683
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1684
    (compression == COMPRESSION_DEFLATE " 32946 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1685
        self readDeflateTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1686
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1687
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1688
    (compression == COMPRESSION_DCS " 32947 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1689
        self readDCSTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1690
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1691
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1692
    (compression == COMPRESSION_NEXT_JPEG " 32865 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1693
        self readNeXTJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1694
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1695
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1696
    (compression == COMPRESSION_JBIG " 34661 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1697
        self readJBIGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1698
        ^ self
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1699
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1700
    (compression == COMPRESSION_SGILOG " 34676 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1701
        self readSGI32TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1702
        ^ self
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1703
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1704
    (compression == COMPRESSION_SGILOG24 " 34677 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1705
        self readSGI24TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1706
        ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1707
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1708
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1709
    self fileFormatError:('compression type ' , compression printString , ' not known').
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1710
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1711
    "Created: / 11-04-1997 / 00:19:44 / cg"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1712
    "Modified: / 26-08-2017 / 21:46:56 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1713
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1714
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1715
readTiledJPEGTiffImageData
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1716
    ^ self fileFormatError:'tiled jpeg (old) compression not implemented'.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1717
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1718
    "Created: / 25-08-2017 / 16:27:28 / cg"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1719
    "Modified: / 26-08-2017 / 13:39:04 / cg"
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1720
!
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1721
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1722
readTiledLZWTiffImageData
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1723
    ^ self fileFormatError:'tiled LZW data not implemented' .
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1724
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1725
    "Created: / 25-08-2017 / 01:05:13 / cg"
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1726
!
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1727
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1728
readTiledNewJPEGTiffImageData
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1729
    ^ self fileFormatError:'tiled new jpeg compression not implemented'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1730
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1731
    "Created: / 26-08-2017 / 13:37:51 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1732
!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1733
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1734
readTiledTiffImageData
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1735
    (compression == COMPRESSION_NONE " 1 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1736
        self readTiledUncompressedTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1737
        ^ self
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1738
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1739
    (compression == COMPRESSION_LZW " 5 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1740
        self readTiledLZWTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1741
        ^ self
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1742
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1743
    (compression == COMPRESSION_OJPEG " 6 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1744
        self readTiledJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1745
        ^ self
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1746
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1747
    (compression == COMPRESSION_JPEG " 7 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1748
        self readTiledNewJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1749
        ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1750
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1751
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1752
    self fileFormatError:('tiled compression type ' , compression printString , ' not supported').
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1753
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1754
    "Created: / 25-08-2017 / 00:19:14 / cg"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1755
    "Modified: / 26-08-2017 / 13:39:15 / cg"
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1756
!
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1757
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1758
readTiledUncompressedTiffImageData
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1759
    |bytesPerRow     "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1760
     bitsPerRow      "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1761
     bytesPerTileRow "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1762
     bitsPerTileRow  "{ Class: SmallInteger }" 
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1763
     nPlanes 
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1764
     tileNr          "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1765
     "/ offset          "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1766
     "/ row             "{ Class: SmallInteger }" 
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1767
     nBytes          "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1768
     bitsPerPixel    "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1769
     overAllBytes    "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1770
     where           "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1771
     x               "{ Class: SmallInteger }"       
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1772
     y               "{ Class: SmallInteger }" 
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1773
     imageRowOffset  "{ Class: SmallInteger }" 
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1774
     imageOffset     "{ Class: SmallInteger }" 
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1775
     tileOffset      "{ Class: SmallInteger }"   
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1776
     dataOffset      "{ Class: SmallInteger }"   
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1777
     tilePos tile tH tW tb|
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1778
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1779
    nPlanes := samplesPerPixel.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1780
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1781
    "/ not all formats are supported here,
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1782
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1783
    (nPlanes == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1784
        (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1785
            ^ self fileFormatError:'with alpha, only separate planes supported'.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1786
        ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1787
        'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1788
        nPlanes := 1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1789
        bitsPerPixel := bitsPerSample at:1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1790
        bitsPerSample := Array with:bitsPerPixel.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1791
        samplesPerPixel := 1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1792
    ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1793
        (nPlanes == 4) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1794
            (planarConfiguration ~~ PLANARCONFIG_CONTIG) ifTrue:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1795
                ^ self fileFormatError:'only non separate planes supported'.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1796
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1797
            bitsPerSample ~= #(8 8 8 8) ifTrue:[
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1798
                ^ self fileFormatError:'only 8/8/8/8 images supported (is: ' , bitsPerSample printString , ')'.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1799
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1800
            bitsPerPixel := 32.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1801
        ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1802
            (nPlanes == 3) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1803
                (planarConfiguration ~~ PLANARCONFIG_CONTIG) ifTrue:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1804
                    ^ self fileFormatError:'only non separate planes supported'.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1805
                ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1806
                bitsPerSample ~= #(8 8 8) ifTrue:[
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1807
                    ^ self fileFormatError:'only 8/8/8 images supported (is: ' , bitsPerSample printString , ')'.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1808
                ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1809
                bitsPerPixel := 24
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1810
            ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1811
                (nPlanes ~~ 1) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1812
                    ^ self fileFormatError:('unsupported format: nplanes=' , nPlanes printString).
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1813
                ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1814
                bitsPerPixel := bitsPerSample at:1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1815
            ]
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1816
        ]
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1817
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1818
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1819
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1820
    ].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1821
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1822
    bitsPerRow := width * bitsPerPixel.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1823
    bytesPerRow := (bitsPerRow + 7) // 8.
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1824
    
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1825
    bitsPerTileRow := tileWidth * bitsPerPixel.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1826
    bytesPerTileRow := (bitsPerTileRow + 7) // 8.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1827
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1828
    overAllBytes := bytesPerRow * height.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1829
    data := ByteArray new:overAllBytes.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1830
    
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1831
    tileNr := 1.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1832
    where := -1.
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1833
    y := 0.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1834
    imageRowOffset := 1.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1835
    [ y < height ] whileTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1836
        tH := tileLength.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1837
        (y+tileLength) > height ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1838
            tH := height - y.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1839
        ].    
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1840
        x := 0.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1841
        imageOffset := imageRowOffset.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1842
        [ x < width ] whileTrue:[
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1843
            nBytes := tileByteCounts at:tileNr.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1844
            tilePos := tileOffsets at:tileNr.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1845
            tileNr := tileNr + 1.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1846
            
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1847
            where ~~ tilePos ifTrue:[
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1848
                inStream position:tilePos.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1849
                where := tilePos.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1850
            ].
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1851
            tile := ByteArray new:nBytes.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1852
            inStream nextBytes:nBytes into:tile startingAt:1 blockSize:4096.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1853
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1854
            "/ copy the tile.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1855
            tileOffset := 1.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1856
            dataOffset := imageOffset. 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1857
            tW := tileWidth.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1858
            tb := bytesPerTileRow.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1859
            (x+tileWidth) > width ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1860
                tW := width-x.
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1861
                tb := ((bitsPerPixel * tW) + 7) // 8.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1862
            ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1863
            1 to:tH do:[:yT |
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1864
                data replaceFrom:dataOffset to:dataOffset+tb-1 with:tile startingAt:tileOffset.
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1865
                dataOffset := dataOffset + bytesPerRow.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1866
                tileOffset := tileOffset + bytesPerTileRow.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1867
            ].
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1868
            
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1869
            "/ offset := offset + nBytes.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1870
            "/ row := row + rowsPerStrip.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1871
            where := where + nBytes.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1872
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1873
            x := x + tW.
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1874
            imageOffset := imageOffset + bytesPerTileRow.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1875
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1876
        y := y + tH.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1877
        imageRowOffset := imageRowOffset + (bytesPerRow*tH).
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1878
    ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1879
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1880
    "Created: / 25-08-2017 / 00:22:31 / cg"
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1881
    "Modified: / 28-08-2017 / 01:14:00 / cg"
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1882
!
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1883
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1884
readUncompressedTiffImageData
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1885
    self readImageDataUsingDecompresor:nil
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1886
    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1887
"/    |bytesPerRow   "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1888
"/     bitsPerRow    "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1889
"/     nPlanes 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1890
"/     stripNr       "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1891
"/     offset        "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1892
"/     row           "{ Class: SmallInteger }" 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1893
"/     nBytes        "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1894
"/     bitsPerPixel 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1895
"/     overAllBytes  "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1896
"/     where         "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1897
"/     stripPos 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1898
"/     convertFloats convertDoubles convertHalfFloats|
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1899
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1900
"/    nPlanes := samplesPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1901
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1902
"/    "/ not all formats are supported here,
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1903
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1904
"/    (nPlanes == 2) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1905
"/        (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1906
"/            ^ self fileFormatError:'with alpha, only separate planes supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1907
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1908
"/        'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1909
"/        nPlanes := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1910
"/        bitsPerPixel := bitsPerSample at:1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1911
"/        bitsPerSample := Array with:bitsPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1912
"/        samplesPerPixel := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1913
"/    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1914
"/        (nPlanes == 4) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1915
"/            (planarConfiguration ~~ PLANARCONFIG_CONTIG) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1916
"/                ^ self fileFormatError:'only non separate planes supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1917
"/            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1918
"/            bitsPerSample ~= #(8 8 8 8) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1919
"/                bitsPerSample ~= #(16 16 16 16) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1920
"/                    ^ self fileFormatError:'only 8/8/8/8 and 16/16/16/16 images supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1921
"/                ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1922
"/            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1923
"/            bitsPerPixel := bitsPerSample sum.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1924
"/        ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1925
"/            (nPlanes == 3) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1926
"/                (planarConfiguration ~~ 1) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1927
"/                    ^ self fileFormatError:'only non separate planes supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1928
"/                ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1929
"/                bitsPerSample ~= #(8 8 8) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1930
"/                    bitsPerSample ~= #(16 16 16) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1931
"/                        ^ self fileFormatError:'only 8/8/8 and 16/16/16 images supported; is: ' , bitsPerSample printString.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1932
"/                    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1933
"/                ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1934
"/                bitsPerPixel := bitsPerSample sum.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1935
"/            ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1936
"/                (nPlanes ~~ 1) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1937
"/                    ^ self fileFormatError:('unsupported format: nplanes=' , nPlanes printString).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1938
"/                ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1939
"/                bitsPerPixel := bitsPerSample at:1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1940
"/            ]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1941
"/        ]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1942
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1943
"/    stripRowCounts notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1944
"/        ^ self fileFormatError:'stripRowCounts not supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1945
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1946
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1947
"/    bitsPerRow := width * bitsPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1948
"/    bytesPerRow := bitsPerRow // 8.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1949
"/    ((bitsPerRow \\ 8) ~~ 0) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1950
"/        bytesPerRow := bytesPerRow + 1
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1951
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1952
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1953
"/    overAllBytes := bytesPerRow * height.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1954
"/    bytesPerRow == width ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1955
"/        data := ByteArray uninitializedNew:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1956
"/    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1957
"/        data := ByteArray new:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1958
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1959
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1960
"/    offset := 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1961
"/    stripNr := 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1962
"/    where := -1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1963
"/    row := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1964
"/    [row <= height] whileTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1965
"/        stripNr := stripNr + 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1966
"/        nBytes := stripByteCounts at:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1967
"/        stripPos := stripOffsets at:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1968
"/        where ~~ stripPos ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1969
"/            inStream position:stripPos.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1970
"/            where := stripPos.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1971
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1972
"/        
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1973
"/        offset + nBytes > overAllBytes ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1974
"/            nBytes := overAllBytes - offset.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1975
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1976
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1977
"/        (inStream nextBytes:nBytes into:data startingAt:offset+1) == nBytes ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1978
"/            ^ self fileFormatError:'short read'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1979
"/        ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1980
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1981
"/        offset := offset + nBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1982
"/        row := row + rowsPerStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1983
"/        where := where + nBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1984
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1985
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1986
    "Modified: / 27-08-2017 / 22:48:27 / cg"
440
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  1987
! !
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  1988
1762
55cf76514c8c method category rename
Claus Gittinger <cg@exept.de>
parents: 1759
diff changeset
  1989
!TIFFReader methodsFor:'private-reading'!
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1990
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1991
decodePhotoshopImageResourceBlock:bytes
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1992
    "8BIM is the signature for Photoshop Image Resource Block (IRB). 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1993
     See http://www.adobe.com/devnet-apps/photoshop/fileformatashtml/#50577409_38034.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1994
     
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1995
     This kind of information could be found in images such as TIFF, JPEG, Photoshop native image format etc. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1996
     It could also be found in non-image documents such as in PDF.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1997
     The structure of the IRB is as follows:
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1998
     Each IRB block starts with 4 bytes signature which translates to string '8BIM.' 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1999
     After that, is a 2 bytes unique identifier denoting the kind of resource for this IRB. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2000
     For example: 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2001
        0x040c for thumbnail; 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2002
        0x041a for slices; 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2003
        0x0408 for grid information; 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2004
        0x040f for ICC Profile etc.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2005
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2006
     After the identifier is a variable length string for name. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2007
     The first byte of the string tells the length of the string (excluding the first length byte). 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2008
     After the first byte comes the string itself. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2009
     There is a requirement that the length of the whole string (including the length byte) should be even. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2010
     Otherwise, pad one more byte after the string.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2011
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2012
     The next 4 bytes specifies the size of the actual data for this resource block followed by the data with the specified length. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2013
     The total length of the data also should be an even number. So if the size of the data is odd, pad another one byte. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2014
     This finishes a whole 8BIM.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2015
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2016
     There could be more than one IRBs but they all conform to the same structure as described above. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2017
     How to interpret the data depends on the unique identifier.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2018
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2019
     Now let's see how the IRBs are include in images. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2020
     For a JPEG image, metadata could be present as one of the application (APPn) segment. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2021
     Since different application could use the same APPn segment to store it's own metadata, 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2022
     there must be some kind of identifier to let the image reader know what kind of information is contained inside the APPn. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2023
     Photoshop uses APP13 as it's IRB container and the APP13 contains 'Photoshop 3.0' as it's identifier.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2024
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2025
     For TIFF image which is tag based and arranged in a directory structure. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2026
     There is a private tag 16r8649 called 'PHOTOSHOP' to insert IRB information.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2027
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2028
    0x03E8 (Obsolete--Photoshop 2.0 only ) Contains five 2-byte values: number of channels, rows, columns, depth, and mode
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2029
    0x03E9 Macintosh print manager print info record
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2030
    0x03EA Macintosh page format information. No longer read by Photoshop. (Obsolete)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2031
    0x03EB Obsolete--Photoshop 2.0 only ) Indexed color table
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2032
    0x03ED ResolutionInfo structure. See Appendix A in Photoshop API Guide.pdf.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2033
    0x03EE Names of the alpha channels as a series of Pascal strings.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2034
    0x03EF (Obsolete) See ID 1077DisplayInfo structure. See Appendix A in Photoshop API Guide.pdf.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2035
    0x03F0 The caption as a Pascal string.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2036
    0x03F1 Border information. Contains a fixed number (2 bytes real, 2 bytes fraction) for the border width, and 2 bytes for border units (1 = inches, 2 = cm, 3 = points, 4 = picas, 5 = columns).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2037
    0x03F2 Background color. See See Color structure.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2038
    0x03F3 Print flags. A series of one-byte boolean values (see Page Setup dialog): labels, crop marks, color bars, registration marks, negative, flip, interpolate, caption, print flags.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2039
    0x03F4 Grayscale and multichannel halftoning information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2040
    0x03F5 Color halftoning information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2041
    0x03F6 Duotone halftoning information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2042
    0x03F7 Grayscale and multichannel transfer function
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2043
    0x03F8 Color transfer functions
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2044
    0x03F9 Duotone transfer functions
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2045
    0x03FA Duotone image information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2046
    0x03FB Two bytes for the effective black and white values for the dot range
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2047
    0x03FC (Obsolete)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2048
    0x03FD EPS options
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2049
    0x03FE Quick Mask information. 2 bytes containing Quick Mask channel ID; 1- byte boolean indicating whether the mask was initially empty.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2050
    0x03FF (Obsolete)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2051
    0x0400 Layer state information. 2 bytes containing the index of target layer (0 = bottom layer).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2052
    0x0401 Working path (not saved). See See Path resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2053
    0x0402 Layers group information. 2 bytes per layer containing a group ID for the dragging groups. Layers in a group have the same group ID.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2054
    0x0403 (Obsolete)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2055
    0x0404 IPTC-NAA record. Contains the File Info... information. See the documentation in the IPTC folder of the Documentation folder.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2056
    0x0405 Image mode for raw format files
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2057
    0x0406 JPEG quality. Private.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2058
    0x0408 (Photoshop 4.0) Grid and guides information. See See Grid and guides resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2059
    0x0409 (Photoshop 4.0) Thumbnail resource for Photoshop 4.0 only. See See Thumbnail resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2060
    0x040A (Photoshop 4.0) Copyright flag. Boolean indicating whether image is copyrighted. Can be set via Property suite or by user in File Info...
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2061
    0x040B (Photoshop 4.0) URL. Handle of a text string with uniform resource locator. Can be set via Property suite or by user in File Info...
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2062
    0x040C (Photoshop 5.0) Thumbnail resource (supersedes resource 1033). See See Thumbnail resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2063
    0x040D (Photoshop 5.0) Global Angle. 4 bytes that contain an integer between 0 and 359, which is the global lighting angle for effects layer. If not present, assumed to be 30.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2064
    0x040E (Obsolete) See ID 1073 below. (Photoshop 5.0) Color samplers resource. See See Color samplers resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2065
    0x040F (Photoshop 5.0) ICC Profile. The raw bytes of an ICC (International Color Consortium) format profile. See ICC1v42_2006-05.pdf in the Documentation folder and icProfileHeader.h in Sample Code\Common\Includes .
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2066
    0x0410 (Photoshop 5.0) Watermark. One byte.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2067
    0x0411 (Photoshop 5.0) ICC Untagged Profile. 1 byte that disables any assumed profile handling when opening the file. 1 = intentionally untagged.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2068
    0x0412 (Photoshop 5.0) Effects visible. 1-byte global flag to show/hide all the effects layer. Only present when they are hidden.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2069
    0x0413 (Photoshop 5.0) Spot Halftone. 4 bytes for version, 4 bytes for length, and the variable length data.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2070
    0x0414 (Photoshop 5.0) Document-specific IDs seed number. 4 bytes: Base value, starting at which layer IDs will be generated (or a greater value if existing IDs already exceed it). Its purpose is to avoid the case where we add layers, flatten, save, open, and then add more layers that end up with the same IDs as the first set.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2071
    0x0415 (Photoshop 5.0) Unicode Alpha Names. Unicode string
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2072
    0x0416 (Photoshop 6.0) Indexed Color Table Count. 2 bytes for the number of colors in table that are actually defined
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2073
    0x0417 (Photoshop 6.0) Transparency Index. 2 bytes for the index of transparent color, if any.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2074
    0x0419 (Photoshop 6.0) Global Altitude. 4 byte entry for altitude
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2075
    0x041A (Photoshop 6.0) Slices. See See Slices resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2076
    0x041B (Photoshop 6.0) Workflow URL. Unicode string
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2077
    0x041C (Photoshop 6.0) Jump To XPEP. 2 bytes major version, 2 bytes minor version, 4 bytes count. Following is repeated for count: 4 bytes block size, 4 bytes key, if key = 'jtDd' , then next is a Boolean for the dirty flag; otherwise it's a 4 byte entry for the mod date.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2078
    0x041D (Photoshop 6.0) Alpha Identifiers. 4 bytes of length, followed by 4 bytes each for every alpha identifier.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2079
    0x041E (Photoshop 6.0) URL List. 4 byte count of URLs, followed by 4 byte long, 4 byte ID, and Unicode string for each count.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2080
    0x0421 (Photoshop 6.0) Version Info. 4 bytes version, 1 byte hasRealMergedData , Unicode string: writer name, Unicode string: reader name, 4 bytes file version.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2081
    0x0422 (Photoshop 7.0) EXIF data 1. See http://www.kodak.com/global/plugins/acrobat/en/service/digCam/exifStandard2.pdf
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2082
    0x0423 (Photoshop 7.0) EXIF data 3. See http://www.kodak.com/global/plugins/acrobat/en/service/digCam/exifStandard2.pdf
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2083
    0x0424 (Photoshop 7.0) XMP metadata. File info as XML description. See http://www.adobe.com/devnet/xmp/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2084
    0x0425 (Photoshop 7.0) Caption digest. 16 bytes: RSA Data Security, MD5 message-digest algorithm
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2085
    0x0426 (Photoshop 7.0) Print scale. 2 bytes style (0 = centered, 1 = size to fit, 2 = user defined). 4 bytes x location (floating point). 4 bytes y location (floating point). 4 bytes scale (floating point)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2086
    0x0428 (Photoshop CS) Pixel Aspect Ratio. 4 bytes (version = 1 or 2), 8 bytes double, x / y of a pixel. Version 2, attempting to correct values for NTSC and PAL, previously off by a factor of approx. 5%.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2087
    0x0429 (Photoshop CS) Layer Comps. 4 bytes (descriptor version = 16), Descriptor (see See Descriptor structure)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2088
    0x042A (Photoshop CS) Alternate Duotone Colors. 2 bytes (version = 1), 2 bytes count, following is repeated for each count: [ Color: 2 bytes for space followed by 4 * 2 byte color component ], following this is another 2 byte count, usually 256, followed by Lab colors one byte each for L, a, b. This resource is not read or used by Photoshop.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2089
    0x042B (Photoshop CS)Alternate Spot Colors. 2 bytes (version = 1), 2 bytes channel count, following is repeated for each count: 4 bytes channel ID, Color: 2 bytes for space followed by 4 * 2 byte color component. This resource is not read or used by Photoshop.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2090
    0x042D (Photoshop CS2) Layer Selection ID(s). 2 bytes count, following is repeated for each count: 4 bytes layer ID
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2091
    0x042E (Photoshop CS2) HDR Toning information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2092
    0x042F (Photoshop CS2) Print info
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2093
    0x0430 (Photoshop CS2) Layer Group(s) Enabled ID. 1 byte for each layer in the document, repeated by length of the resource. NOTE: Layer groups have start and end markers
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2094
    0x0431 (Photoshop CS3) Color samplers resource. Also see ID 1038 for old format. See See Color samplers resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2095
    0x0432 (Photoshop CS3) Measurement Scale. 4 bytes (descriptor version = 16), Descriptor (see See Descriptor structure)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2096
    0x0433 (Photoshop CS3) Timeline Information. 4 bytes (descriptor version = 16), Descriptor (see See Descriptor structure)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2097
    0x0434 (Photoshop CS3) Sheet Disclosure. 4 bytes (descriptor version = 16), Descriptor (see See Descriptor structure)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2098
    0x0435 (Photoshop CS3) DisplayInfo structure to support floating point clors. Also see ID 1007. See Appendix A in Photoshop API Guide.pdf .
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2099
    0x0436 (Photoshop CS3) Onion Skins. 4 bytes (descriptor version = 16), Descriptor (see See Descriptor structure)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2100
    0x0438 (Photoshop CS4) Count Information. 4 bytes (descriptor version = 16), Descriptor (see See Descriptor structure) Information about the count in the document. See the Count Tool.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2101
    0x043A (Photoshop CS5) Print Information. 4 bytes (descriptor version = 16), Descriptor (see See Descriptor structure) Information about the current print settings in the document. The color management options.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2102
    0x043B (Photoshop CS5) Print Style. 4 bytes (descriptor version = 16), Descriptor (see See Descriptor structure) Information about the current print style in the document. The printing marks, labels, ornaments, etc.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2103
    0x043C (Photoshop CS5) Macintosh NSPrintInfo. Variable OS specific info for Macintosh. NSPrintInfo. It is recommened that you do not interpret or use this data.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2104
    0x043D (Photoshop CS5) Windows DEVMODE. Variable OS specific info for Windows. DEVMODE. It is recommened that you do not interpret or use this data.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2105
    0x043E (Photoshop CS6) Auto Save File Path. Unicode string. It is recommened that you do not interpret or use this data.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2106
    0x043F (Photoshop CS6) Auto Save Format. Unicode string. It is recommened that you do not interpret or use this data.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2107
    0x0440 (Photoshop CC) Path Selection State. 4 bytes (descriptor version = 16), Descriptor (see See Descriptor structure) Information about the current path selection state.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2108
    0x07D0-0x0BB6 Path Information (saved paths). See See Path resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2109
    0x0BB7 Name of clipping path. See See Path resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2110
    0x0BB8 (Photoshop CC) Origin Path Info. 4 bytes (descriptor version = 16), Descriptor (see See Descriptor structure) Information about the origin path data.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2111
    0x0FA0-0x1387 Plug-In resource(s). Resources added by a plug-in. See the plug-in API found in the SDK documentation
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2112
    0x1B58 Image Ready variables. XML representation of variables definition
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2113
    0x1B59 Image Ready data sets
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2114
    0x1B5A Image Ready default selected state
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2115
    0x1B5B Image Ready 7 rollover expanded state
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2116
    0x1B5C Image Ready rollover expanded state
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2117
    0x1B5D Image Ready save layer settings
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2118
    0x1B5E Image Ready version
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2119
    0x1F40 (Photoshop CS3) Lightroom workflow, if present the document is in the middle of a Lightroom workflow.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2120
    0x2710 Print flags information. 2 bytes version ( = 1), 1 byte center crop marks, 1 byte ( = 0), 4 bytes bleed width value, 2 bytes bleed width scale.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2121
    "
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2122
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2123
    |s id name len resource record|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2124
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2125
    record := OrderedCollection new.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2126
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2127
    s := bytes readStream.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2128
    [s atEnd] whileFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2129
        (s next:4) asString = '8BIM' ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2130
            id := s nextUnsignedInt16MSB.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2131
            name := s upTo:0.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2132
            name size odd ifFalse:[ s next ]. "/ padding
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2133
            len := s nextUnsignedInt32MSB.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2134
            resource := s next:len.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2135
            Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2136
                Transcript showCR:('      8BIM-%1: %2' bindWith:(id hexPrintString:4) with:resource).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2137
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2138
            record add:(Dictionary new
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2139
                            at:#id put:id;
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2140
                            at:#name put:name;
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2141
                            at:#resource put:resource;
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2142
                            yourself).                    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2143
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2144
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2145
    metaData at:#'PhotoshopIRB' put:record.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2146
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2147
    "Created: / 27-08-2017 / 17:12:25 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2148
    "Modified: / 27-08-2017 / 18:14:56 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2149
!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2150
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2151
decodeTiffTag:tagType numberType:numberType length:length
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2152
    |offset value valueArray 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2153
     val scaleFactor rV gV bV
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2154
     n  "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2155
     i2 "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2156
     i3 "{ Class: SmallInteger }" |
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2157
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2158
    Verbose == true ifTrue:[ Logger info:'tiffTag: %1' with:tagType ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2159
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2160
    (numberType == 3 "TIFF_SHORT") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2161
        "16 bit ushort"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2162
        valueArray := self readShorts:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2163
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2164
    ] ifFalse:[(numberType == 4 "TIFF_LONG") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2165
        "32 bit uinteger"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2166
        valueArray := self readLongs:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2167
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2168
    ] ifFalse:[(numberType == 2 "TIFF_ASCII") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2169
        "ascii characters"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2170
        value := self readChars:length
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2171
    ] ifFalse:[(numberType == 5 "TIFF_RATIONAL") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2172
        "64 (32+32) bit ufraction"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2173
        valueArray := self readFracts:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2174
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2175
    ] ifFalse:[(numberType == 1 "TIFF_BYTE") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2176
        "8bit uinteger"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2177
        value := self readBytes:length signed:false
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2178
    ] ifFalse:[(numberType == 6 "TIFF_SBYTE") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2179
        "TIFF6: 8bit signed integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2180
        value := self readBytes:length  signed:true
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2181
    ] ifFalse:[(numberType == 8 "TIFF_SSHORT") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2182
        "TIFF6: 16bit signed integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2183
        valueArray := self readShorts:length signed:true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2184
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2185
    ] ifFalse:[(numberType == 9 "TIFF_SLONG") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2186
        "TIFF6: 32bit signed integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2187
        valueArray := self readLongs:length signed:true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2188
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2189
    ] ifFalse:[(numberType == 10 "TIFF_SRATIONAL") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2190
        "TIFF6: 64 (32+32) bit signed fraction"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2191
        valueArray := self readFracts:length signed:true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2192
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2193
    ] ifFalse:[(numberType == 11 "TIFF_FLOAT") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2194
        "TIFF6: 32 bit IEEE float"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2195
        valueArray := self readFloats:length.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2196
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2197
    ] ifFalse:[(numberType == 12 "TIFF_DOUBLE") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2198
        "TIFF6: 64 bit IEEE double"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2199
        valueArray := self readDoubles:length.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2200
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2201
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2202
    ] ifFalse:[(numberType == 7 "TIFF_UNDEFINED") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2203
        "8bit anything"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2204
        value := self readBytes:length signed:false
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2205
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2206
    "/ the following are preps for the propsed bigTiff format    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2207
    ] ifFalse:[(numberType == 16 "TIFF_LONG8") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2208
        "BIGTIFF: 8-byte unsigned integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2209
        valueArray := self readLong8s:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2210
        value := valueArray at:1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2211
    ] ifFalse:[(numberType == 17 "TIFF_SLONG8") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2212
        "BIGTIFF: 8-byte signed integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2213
        valueArray := self readLong8s:length signed:true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2214
        value := valueArray at:1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2215
    ] ifFalse:[(numberType == 18 "TIFF_IFD8") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2216
        "BIGTIFF: 8-byte unsigned IFD offset"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2217
        valueArray := self readLong8s:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2218
        value := valueArray at:1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2219
    ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2220
        isBigTiff ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2221
            offset := (inStream nextInt64MSB:(byteOrder ~~ #lsb))
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2222
        ] ifFalse:[    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2223
            offset := (inStream nextInt32MSB:(byteOrder ~~ #lsb))
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2224
        ]
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2225
    ]]]]]]]]]]]]]]].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2226
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2227
    (tagType between:200 and:299) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2228
        (tagType == 254) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2229
            "/ New SubfileType
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2230
            "/      REDUCEDIMAGE    -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2231
            "/      PAGE            -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2232
            "/      MASK            -> 4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2233
            "newSubFileType := value."
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2234
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2235
            "/ 'newSubfiletype ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2236
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2237
                Logger info:'      newSubfiletype: %1' with:value
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2238
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2239
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2240
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2241
        (tagType == 255) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2242
            "/ Old SubfileType
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2243
            "/      IMAGE           -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2244
            "/      REDUCEDIMAGE    -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2245
            "/      PAGE            -> 3
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2246
            subFileType := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2247
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2248
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2249
                Logger info:'      oldSubfiletype: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2250
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2251
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2252
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2253
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2254
        (tagType == 256) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2255
            "ImageWidth"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2256
            width := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2257
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2258
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2259
                Logger info:'      width: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2260
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2261
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2262
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2263
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2264
        (tagType == 257) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2265
            "ImageHeight"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2266
            height := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2267
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2268
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2269
                Logger info:'      height: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2270
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2271
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2272
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2273
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2274
        (tagType == 258) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2275
            "bitspersample"  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2276
             bitsPerSample := valueArray.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2277
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2278
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2279
                Logger info:'      bitspersample: %1' with:valueArray 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2280
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2281
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2282
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2283
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2284
        (tagType == 259) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2285
            "/ compression
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2286
            "/      NONE            -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2287
            "/      CCITTRLE        -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2288
            "/      CCITTFAX3       -> 3
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2289
            "/      CCITTFAX4       -> 4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2290
            "/      LZW             -> 5
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2291
            "/      OJPEG           -> 6 (old style jpeg)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2292
            "/      JPEG            -> 7 (new style jpeg)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2293
            "/      ADOBE_DEFLATE   -> 8
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2294
            "/      JBIG            -> 9 (ITU-T T85)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2295
            "/      JBIG            -> 10 (ITU-T T43)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2296
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2297
            "/      NEXT            -> 32766 (NeXT 2-bit encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2298
            "/      CCITTRLEW       -> 32771
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2299
            "/      PACKBITS        -> 32773
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2300
            "/      THUNDERSCAN     -> 32809 (ThunderScan 4-bit encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2301
            "/      IT8CTPAD        -> 32895  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2302
            "/      IT8LW           -> 32896  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2303
            "/      IT8MP           -> 32897  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2304
            "/      IT8BL           -> 32898  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2305
            "/      PIXARFILM       -> 32908
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2306
            "/      PIXARLOG        -> 32909 (Pixar companded 11-bit ZIP encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2307
            "/      DEFLATE         -> 32946 (PKZIP-style Deflate encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2308
            "/      DCS             -> 32947 (kodac)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2309
            "/      JBIG            -> 34661
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2310
            "/      SGI32           -> 34676 (SGI 32-bit Log Luminance encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2311
            "/      SGI24           -> 34677 (SGI 24-bit Log Luminance encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2312
            "/      JPEG2000        -> 34712 JPEG2000
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2313
            "/      NIKON_NEF       -> 34713 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2314
            "/      JBIG2           -> 34715 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2315
            compression := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2316
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2317
            Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2318
                |s|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2319
                s := (Dictionary withKeyValuePairs:
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2320
                        #( (1 uncompressed)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2321
                            (2 CCITTRLE)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2322
                            (3 CCITTFAX3)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2323
                            (4 CCITTFAX4)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2324
                            (5 LZW)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2325
                            (6 OJPEG)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2326
                            (7 JPEG)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2327
                            (8 ADOBE_DEFLATE)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2328
                            (9 JBIG_T85)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2329
                            (10 JBIG_T43)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2330
                            (32766 NEXT)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2331
                            (32771 CCITTRLEW)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2332
                            (32773 PACKBITS)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2333
                            (32809 THUNDERSCAN)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2334
                            (32895 IT8CTPAD)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2335
                            (32896 IT8LW)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2336
                            (32897 IT8MP)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2337
                            (32898 IT8BL)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2338
                            (32908 PIXARFILM)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2339
                            (32909 PIXARLOG)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2340
                            (32946 DEFLATE)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2341
                            (32947 DCS)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2342
                            (34661 JBIG)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2343
                            (34676 SGI32)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2344
                            (34677 SGI24)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2345
                            (34712 JPEG2000)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2346
                            (34713 NIKON_NEF)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2347
                            (34715 JBIG2) 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2348
                        )) at:value ifAbsent:'???'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2349
                Logger info:'      compression: %1 (=%2)' with:value with:s.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2350
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2351
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2352
        ].
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2353
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2354
        (tagType == 262) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2355
            "photometric"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2356
            |p|
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2357
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2358
            (value between:0 and:10) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2359
                p := 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2360
                    #(
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2361
                        whiteIs0            "/  0 - grayscale or monochrome; faxes
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2362
                        blackIs0            "/  1 - grayscale or monochrome; faxes
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2363
                        rgb                 "/  2
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2364
                        palette             "/  3
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2365
                        transparencyMask    "/  4
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2366
                        cmyk                "/  5 - color separations
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2367
                        YCbCr               "/  6 - CCIR 601
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2368
                        nil                 "/  7
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2369
                        CIElab              "/  8 - 1976 CIE L*a*b*
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2370
                        ICClab              "/  9 - ICC L*a*b*
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2371
                        ITUlab              "/ 10 - see ITO-T- Rec T42 (RFC 2301)
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2372
                    ) at:(value + 1)    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2373
            ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2374
                (value == 32803) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2375
                    p := #ColorFilterArray    "/ camera rw format
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2376
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2377
                (value == 32844) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2378
                    p := #PixarLogL   
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2379
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2380
                (value == 32845) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2381
                    p := #PixarLogLuv    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2382
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2383
                (value == 34892) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2384
                    p := #LinearRaw           "/ camera rw format
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2385
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2386
            ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2387
            photometric := p.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2388
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2389
                Logger info:'      photometric: %1 (=%2)' with:value with:photometric
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2390
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2391
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2392
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2393
        (tagType == 263) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2394
            "/ Thresholding
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2395
            "/      BILEVEL         -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2396
            "/      HALFTONE        -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2397
            "/      ERRORDIFFUSE    -> 3
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2398
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2399
            "thresholding := value."
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2400
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2401
            "/ 'thresholding ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2402
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2403
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2404
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2405
        (tagType == 264) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2406
            "CellWidth"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2407
            "/ 'cellWidth ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2408
            metaData at:#CellWidth put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2409
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2410
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2411
        (tagType == 265) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2412
            "CellLength"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2413
            "/ 'cellLength ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2414
            metaData at:#CellLength put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2415
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2416
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2417
        (tagType == 266) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2418
            "fillOrder"
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  2419
            (value == FILLORDER_MSB2LSB ) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2420
                fillOrder := #msb
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2421
            ] ifFalse:[
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  2422
                (value == FILLORDER_LSB2MSB) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2423
                    fillOrder := #lsb
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2424
                ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2425
                    fillOrder := nil
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2426
                ]
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2427
            ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2428
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2429
                Logger info:'      fillorder: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2430
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2431
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2432
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2433
        (tagType == 269) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2434
            "documentName - info only"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2435
            metaData at:#DocumentName put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2436
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2437
                Logger info:'      documentName: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2438
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2439
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2440
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2441
        (tagType == 270) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2442
            "imageDescription - info only"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2443
            metaData at:#ImageDescription put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2444
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2445
                Logger info:'      imageDescription: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2446
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2447
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2448
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2449
        (tagType == 271) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2450
            "make - info only"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2451
            metaData at:#Make put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2452
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2453
                Logger info:'      make: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2454
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2455
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2456
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2457
        (tagType == 272) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2458
            "model - info only"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2459
            metaData at:#Model put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2460
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2461
                Logger info:'      model: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2462
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2463
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2464
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2465
        (tagType == 273) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2466
            "stripOffsets"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2467
            stripOffsets := valueArray.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2468
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2469
                Logger info:'      stripOffsets: %1' with:valueArray 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2470
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2471
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2472
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2473
        (tagType == 274) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2474
            "Orientation"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2475
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2476
            orientation :=
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2477
                            #( nil          "/ 1 normal (topLeft)
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2478
                               hFlip        "/ 2 horizontal flip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2479
                               hvFlip       "/ 3 horizontal & vertical flip
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2480
                               vFlip        "/ 4 vertical flip
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2481
                               rot90ccw     "/ 5 rot 90' counter clock-wise
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2482
                               rot90        "/ 6 rot 90' clock-wise
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2483
                               rot90flip    "/ 7 rot 90' & flip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2484
                               rot90ccwFlip "/ 8 rot 90' ccw & flip
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2485
                             ) at:value ifAbsent:#unsupported.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2486
            metaData at:#Orientation put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2487
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2488
                Logger info:'      orientation: %1 (=%2)' with:value with:(orientation ? #normal)
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2489
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2490
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2491
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2492
        (tagType == 277) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2493
            samplesPerPixel := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2494
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2495
                Logger info:'      samplesperpixel: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2496
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2497
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2498
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2499
        (tagType == 278) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2500
            rowsPerStrip := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2501
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2502
                Logger info:'      rowsPerStrip: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2503
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2504
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2505
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2506
        (tagType == 279) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2507
            "stripbytecount"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2508
            stripByteCounts := valueArray.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2509
            "/        'stripByteCounts Array(' print. 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2510
            "/        stripByteCounts size print.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2511
            "/        ')' printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2512
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2513
                Logger info:'      stripByteCounts: %1' with:valueArray 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2514
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2515
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2516
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2517
        (tagType == 280) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2518
            "/ minSampleValue
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2519
            metaData at:#MinSampleValue put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2520
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2521
                Logger info:'      minSampleValue: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2522
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2523
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2524
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2525
        (tagType == 281) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2526
            "/ maxSampleValue
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2527
            metaData at:#MaxSampleValue put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2528
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2529
                Logger info:'      maxSampleValue: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2530
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2531
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2532
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2533
        (tagType == 282) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2534
            "/ xResolution
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2535
            metaData at:#ResolutionX put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2536
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2537
                Logger info:'      xResolution: %1 (%2)' with:value with:value asFloat 
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2538
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2539
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2540
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2541
        (tagType == 283) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2542
            "/ yResolution
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2543
            metaData at:#ResolutionY put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2544
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2545
                Logger info:'      yResolution: %1 (%2)' with:value with:value asFloat 
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2546
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2547
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2548
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2549
        (tagType == 284) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2550
            (value == 1) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2551
                planarConfiguration := PLANARCONFIG_CONTIG
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2552
            ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2553
                (value == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2554
                    planarConfiguration := PLANARCONFIG_SEPARATE
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2555
                ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2556
                    planarConfiguration := nil
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2557
                ]
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2558
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2559
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2560
                Logger info:'      planarConfiguration: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2561
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2562
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2563
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2564
        (tagType == 285) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2565
            "/ 'pageName ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2566
            metaData at:#PageName put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2567
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2568
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2569
        (tagType == 286) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2570
            "/ xPosition
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2571
            metaData at:#PositionX put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2572
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2573
                Logger info:'      xPosition: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2574
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2575
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2576
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2577
        (tagType == 287) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2578
            "/ yPosition
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2579
            metaData at:#PositionY put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2580
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2581
                Logger info:'      yPosition: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2582
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2583
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2584
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2585
        (tagType == 288) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2586
            "/ 'freeOffsets ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2587
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2588
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2589
        (tagType == 289) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2590
            "/ 'freeByteCounts ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2591
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2592
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2593
        (tagType == 290) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2594
            "/ 'grayResponceUnit' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2595
            metaData at:#GrayResponceUnit put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2596
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2597
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2598
        (tagType == 291) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2599
            "/ 'grayResponceCurve' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2600
            metaData at:#GrayResponceCurve put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2601
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2602
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2603
        (tagType == 292) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2604
            "/ group3options (now called T4Options)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2605
            "/      2DENCODING      -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2606
            "/      UNCOMPRESSED    -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2607
            "/      FILLBITS        -> 4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2608
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2609
            group3options := value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2610
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2611
                Logger info:'      group3options: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2612
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2613
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2614
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2615
        (tagType == 293) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2616
            "/ group4options (now called T6Options)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2617
            "/      UNCOMPRESSED    -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2618
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2619
            "/ group4options := value.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2620
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2621
                Logger info:'      group4options: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2622
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2623
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2624
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2625
        (tagType == 296) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2626
            "resolutionunit"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2627
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2628
            "/        (value == 1) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2629
            "/            'res-unit pixel' printNewline
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2630
            "/        ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2631
            "/            (value == 2) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2632
            "/                'res-unit inch' printNewline
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2633
            "/            ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2634
            "/                (value == 3) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2635
            "/                    'res-unit mm' printNewline
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2636
            "/                ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2637
            "/                    'res-unit invalid' printNewline
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2638
            "/                ]
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2639
            "/            ]
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2640
            "/        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2641
            metaData at:#ResolutionUnit put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2642
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2643
                Logger info:'      resolutionUnit: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2644
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2645
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2646
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2647
        (tagType == 297) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2648
            "/ 'pageNumber ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2649
            metaData at:#PageNumber put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2650
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2651
                Logger info:'      PageNumber: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2652
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2653
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2654
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2655
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2656
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2657
    (tagType between:300 and:399) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2658
        (tagType == 300) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2659
            "/ 'colorResponceUnit' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2660
            metaData at:#ColorResponceUnit put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2661
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2662
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2663
        (tagType == 301) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2664
            "/ 'colorResponceCurve' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2665
            metaData at:#ColorResponceCurve put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2666
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2667
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2668
        (tagType == 305) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2669
            "software - info only"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2670
            metaData at:#Software put:value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2671
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2672
                Logger info:'      software: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2673
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2674
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2675
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2676
        (tagType == 306) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2677
            "dateTime - info only"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2678
            metaData at:#DateTime put:value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2679
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2680
                Logger info:'      dateTime: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2681
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2682
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2683
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2684
        (tagType == 315) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2685
            "artist - info only"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2686
            metaData at:#Artist put:value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2687
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2688
                Logger info:'      artist: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2689
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2690
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2691
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2692
        (tagType == 316) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2693
            "host computer - info only"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2694
            metaData at:#HostComputer put:value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2695
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2696
                Logger info:'      host: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2697
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2698
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2699
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2700
        (tagType == 317) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2701
            "/ predictor
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2702
            "/ 1 -> no predictor
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2703
            "/ 2 -> horiz. difference (see tiff spec 6.0)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2704
            "/ 3 -> flt pnt (see adobe tech notes)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2705
            "/ 34892 -> horiz difference x2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2706
            "/ 34893 -> horiz difference x4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2707
            "/ 34894 -> flt pnt x2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2708
            "/ 34895 -> flt pnt x4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2709
            predictor := value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2710
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2711
                Logger info:'      predictor: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2712
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2713
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2714
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2715
        (tagType == 318) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2716
            "/ whitePoint
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2717
            metaData at:#WhitePoint put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2718
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2719
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2720
        (tagType == 319) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2721
            "/ primaryChromatics
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2722
            metaData at:#PrimaryChromatics put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2723
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2724
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2725
        (tagType == 320) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2726
            "/ 'colorMap (size=' print. valueArray size print. ')' printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2727
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2728
            "
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2729
             the tiff colormap contains 16bit values;
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2730
             our colormap expects 8bit values
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2731
            "
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2732
            n := valueArray size // 3.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2733
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2734
            rV := ByteArray uninitializedNew:n.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2735
            gV := ByteArray uninitializedNew:n.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2736
            bV := ByteArray uninitializedNew:n.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2737
            scaleFactor := 255.0 / 16rFFFF.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2738
            i2 := n+1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2739
            i3 := 2*n+1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2740
            1 to:n do:[:vi |
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2741
                val := ((valueArray at:vi) * scaleFactor) rounded.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2742
                rV at:vi put:val.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2743
                val := ((valueArray at:i2) * scaleFactor) rounded.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2744
                gV at:vi put:val.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2745
                val := ((valueArray at:i3) * scaleFactor) rounded.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2746
                bV at:vi put:val.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2747
                i2 := i2 + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2748
                i3 := i3 + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2749
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2750
            colorMap := MappedPalette redVector:rV greenVector:gV blueVector:bV.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2751
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2752
                Logger info:'      colormap: ...'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2753
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2754
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2755
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2756
        (tagType == 321) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2757
            "/ halftonehints
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2758
            metaData at:#HalftoneHints put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2759
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2760
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2761
        (tagType == 322) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2762
            "/ tilewidth
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2763
            tileWidth := value.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2764
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2765
                Logger info:'      tileWidth: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2766
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2767
            (tileWidth \\ 16) == 0 ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2768
                Logger warning:'TIFFReader: tile width is not a multiple of 16'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2769
            ].    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2770
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2771
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2772
        (tagType == 323) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2773
            "/ tilelength (height)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2774
            tileLength := value.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2775
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2776
                Logger info:'      tileLength: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2777
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2778
            (tileLength \\ 16) == 0 ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2779
                Logger warning:'TIFFReader: tile height is not a multiple of 16'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2780
            ].    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2781
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2782
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2783
        (tagType == 324) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2784
            "/ tileoffsets
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2785
            tileOffsets := valueArray.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2786
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2787
                Logger info:'      tileOffsets: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2788
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2789
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2790
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2791
        (tagType == 325) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2792
            "/ tilebytecounts
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2793
            tileByteCounts := valueArray.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2794
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2795
                Logger info:'      tileByteCounts: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2796
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2797
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2798
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2799
        (tagType == 326) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2800
            "/ badFaxLines
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2801
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2802
                Logger info:'      badFaxLines: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2803
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2804
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2805
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2806
        (tagType == 327) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2807
            "CleanFaxData"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2808
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2809
                "/        'cleanfaxdata' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2810
                "/        (value == 0) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2811
                "/            'no lines with incorrect pixel counts' printNewline
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2812
                "/        ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2813
                "/            (value == 1) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2814
                "/                'incorrect lines were regenerated' printNewline
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2815
                "/            ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2816
                "/                (value == 2) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2817
                "/                    'incorrect lines were not regenerated' printNewline
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2818
                "/                ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2819
                "/                    'cleanfaxdata invalid' printNewline
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2820
                "/                ]
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2821
                "/            ]
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2822
                "/        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2823
                Logger info:'      cleanfaxdata: %1' with:value  
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2824
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2825
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2826
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2827
        (tagType == 328) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2828
            "/ consecutiveBadFaxLines
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2829
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2830
                Logger info:'      consecutiveBadFaxLines: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2831
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2832
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2833
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2834
        (tagType == 330) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2835
            "/ subifd
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2836
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2837
                Logger info:'      subifd: %1' with:valueArray 
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2838
            ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2839
            subIfds := valueArray. 
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2840
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2841
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2842
        (tagType == 332) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2843
            "/ 'ink set' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2844
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2845
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2846
        (tagType == 333) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2847
            "/ 'ink names' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2848
            metaData at:#IncNames put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2849
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2850
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2851
        (tagType == 334) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2852
            "/ 'numinks' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2853
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2854
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2855
        (tagType == 336) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2856
            "/ 'dot range' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2857
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2858
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2859
        (tagType == 337) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2860
            "/ 'target printer' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2861
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2862
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2863
        (tagType == 338) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2864
            "/ 'extrasamples' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2865
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2866
                Logger info:'      extrasamples: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2867
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2868
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2869
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2870
        (tagType == 339) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2871
            "/ 'sample format' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2872
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2873
                Logger info:'      sample format: %1 (=%2)' 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2874
                            with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2875
                            with:(#( uint int float undef ) at:value ifAbsent:'???')
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2876
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2877
            sampleFormat := value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2878
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2879
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2880
        (tagType == 340) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2881
            "/ 'min sample value' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2882
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2883
                Logger info:'      min sample value: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2884
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2885
            minSampleValue := value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2886
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2887
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2888
        (tagType == 341) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2889
            "/ 'max sample value' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2890
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2891
                Logger info:'      max sample value: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2892
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2893
            maxSampleValue := value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2894
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2895
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2896
        (tagType == 342) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2897
            "/ 'transfer range' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2898
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2899
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2900
        (tagType == 343) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2901
            "/ 'clip path' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2902
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2903
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2904
        (tagType == 344) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2905
            "/ 'xclip path units' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2906
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2907
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2908
        (tagType == 345) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2909
            "/ 'yclip path units' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2910
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2911
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2912
        (tagType == 346) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2913
            "/ 'indexed' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2914
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2915
        ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2916
        (tagType == 347) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2917
            "/ 'jpegtables' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2918
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2919
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2920
        (tagType == 351) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2921
            "/ opiproxy
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2922
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2923
        ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2924
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2925
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2926
    (tagType between:400 and:499) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2927
        (tagType == 400) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2928
            "/ 'GlobalParametersIFD' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2929
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2930
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2931
        (tagType == 401) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2932
            "/ 'ProfileType' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2933
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2934
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2935
        (tagType == 402) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2936
            "/ 'FaxProfile' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2937
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2938
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2939
        (tagType == 403) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2940
            "/ 'CodingMethods' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2941
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2942
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2943
        (tagType == 404) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2944
            "/ 'VersionYear' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2945
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2946
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2947
        (tagType == 405) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2948
            "/ 'ModeNumber' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2949
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2950
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2951
        (tagType == 433) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2952
            "/ 'Decode' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2953
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2954
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2955
        (tagType == 434) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2956
            "/ 'DefaultImageColor' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2957
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2958
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2959
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2960
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2961
    (tagType between:500 and:599) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2962
        "/ obsolete JPEG tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2963
        (tagType == 512) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2964
            "/ 'jpeg proc' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2965
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2966
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2967
        (tagType == 513) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2968
            "/ 'jpeg proc' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2969
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2970
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2971
        (tagType == 514) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2972
            "/ 'jpeg ifByteCount' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2973
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2974
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2975
        (tagType == 515) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2976
            "/ 'jpeg restartInterval' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2977
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2978
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2979
        (tagType == 517) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2980
            "/ 'jpeg glossLessPredictors' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2981
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2982
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2983
        (tagType == 518) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2984
            "/ 'jpeg pointTransform' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2985
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2986
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2987
        (tagType == 519) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2988
            "/ 'jpeg qTables' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2989
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2990
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2991
        (tagType == 520) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2992
            "/ 'jpeg dcTables' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2993
             ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2994
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2995
        (tagType == 521) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2996
            "/ 'jpeg acTables' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2997
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2998
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2999
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3000
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3001
        (tagType == 529) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3002
            "/ ycbr coeff
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3003
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3004
                Logger info:'      ycbr coeff: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3005
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3006
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3007
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3008
        (tagType == 530) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3009
            "/ ycbr subsampling
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3010
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3011
                Logger info:'      ycbr subsampling: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3012
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3013
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3014
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3015
        (tagType == 531) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3016
            "/ ycbr positioning
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3017
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3018
                Logger info:'      ycbr positioning: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3019
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3020
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3021
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3022
        (tagType == 532) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3023
            "/ referenceBlackWhite
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3024
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3025
                Logger info:'      referenceBlackWhite: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3026
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3027
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3028
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3029
        (tagType == 559) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3030
            "/ stripRowCounts
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3031
            "/ Defined in the Mixed Raster Content part of RFC 2301, 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3032
            "/ used to replace RowsPerStrip for IFDs with variable-sized strips.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3033
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3034
                Logger info:'      stripRowCounts: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3035
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3036
            stripRowCounts := valueArray.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3037
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3038
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3039
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3040
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3041
    (tagType between:700 and:799) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3042
        (tagType == 700) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3043
            "XMP metadata (xml)"
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3044
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3045
            "/ In TIFF files, the XML Packet containing XMP metadata is pointed to
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3046
            "/ by an entry in the Image File Directory (IFD). That entry has a Tag
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3047
            "/ value of 700, as shown in Table 1.1, "TIFF IFD Directory Entry for
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3048
            "/ XML Packets
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3049
            
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3050
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3051
                Logger info:'      XMLPACKET: %1' with:value asString
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3052
            ].
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3053
            decodeMetaTags == true ifTrue:[
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3054
                metaData at:#xmpData put:value asString.
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3055
            ].    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3056
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3057
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3058
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3059
    
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3060
    (tagType between:18000 and:18999) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3061
        (tagType == 18246) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3062
            "/ Image Rating by windows
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3063
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3064
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3065
        (tagType == 18249) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3066
            "/ Image Rating Percent by windows
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3067
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3068
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3069
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3070
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3071
    (tagType between:32000 and:32999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3072
        (tagType == 32781) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3073
            "/'imageid' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3074
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3075
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3076
        (tagType == 32932) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3077
            "/'wang annotation' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3078
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3079
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3080
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3081
        "/ Private Island graphics tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3082
        (tagType == 32953) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3083
            "/'ref points' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3084
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3085
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3086
        (tagType == 32954) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3087
            "/ 'regionTagPoint' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3088
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3089
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3090
        (tagType == 32955) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3091
            "/ 'regionWarpCorners' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3092
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3093
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3094
        (tagType == 32956) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3095
            "/ 'regionAffine' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3096
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3097
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3098
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3099
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3100
        "/ Private SGI tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3101
        (tagType == 32995) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3102
            "/ 'matteing' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3103
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3104
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3105
        
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3106
        (tagType == 32996) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3107
            "/ datatype
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3108
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3109
                Logger info:'      datatype: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3110
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3111
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3112
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3113
        (tagType == 32997) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3114
            "/ imagedepth
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3115
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3116
                Logger info:'      imagedepth: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3117
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3118
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3119
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3120
        (tagType == 32998) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3121
            "/ tiledepth
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3122
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3123
                Logger info:'      tiledepth: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3124
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3125
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3126
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3127
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3128
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3129
    (tagType between:33000 and:33999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3130
        "/ Private Pixar tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3131
        (tagType == 33300) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3132
            "/ 'image full width' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3133
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3134
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3135
        (tagType == 33301) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3136
            "/ 'image full length' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3137
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3138
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3139
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3140
        "/ Private Eastman Kodak tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3141
        (tagType == 33405) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3142
            "/ 'write serial number' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3143
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3144
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3145
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3146
        (tagType == 33421) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3147
            "/ CFARepeatPatternDim - For camera raw files from sensors with CFA overlay
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3148
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3149
                Logger info:'      CFARepeatPatternDim: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3150
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3151
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3152
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3153
        (tagType == 33422) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3154
            "/ CFAPattern - For camera raw files from sensors with CFA overlay
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3155
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3156
                Logger info:'      CFAPattern: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3157
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3158
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3159
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3160
        (tagType == 33423) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3161
            "/ BatteryLevel - Encodes camera battery level at time of image capture
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3162
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3163
        ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3164
        (tagType == 33432) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3165
            "/ 'copyright' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3166
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3167
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3168
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3169
        (tagType == 33550) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3170
            "/ 'geotiff modelpixelscaletag' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3171
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3172
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3173
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3174
        (tagType == 33723) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3175
            "/ 'RICHTIFFIPTC' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3176
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3177
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3178
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3179
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3180
        (tagType == 33920) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3181
            "/ 'geotiff IntergraphMatrixTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3182
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3183
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3184
        (tagType == 33922) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3185
            "/ 'geotiff ModelTiepointTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3186
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3187
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3188
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3189
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3190
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3191
    (tagType between:34000 and:34999) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3192
        (tagType == 34016) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3193
            "/ Site
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3194
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3195
                Logger info:'      site: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3196
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3197
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3198
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3199
        (tagType == 34017) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3200
            "/ colorSequence
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3201
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3202
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3203
        (tagType == 34018) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3204
            "/ it8header
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3205
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3206
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3207
        (tagType == 34019) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3208
            "/ rasterPadding
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3209
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3210
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3211
        (tagType == 34020) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3212
            "/ bitsPerRunLength
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3213
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3214
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3215
        (tagType == 34021) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3216
            "/ bitsPerExtendedRunLength
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3217
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3218
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3219
        (tagType == 34022) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3220
            "/ colorTable
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3221
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3222
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3223
        (tagType == 34023) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3224
            "/ imageColorIndicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3225
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3226
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3227
        (tagType == 34024) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3228
            "/ backgroundColorIndicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3229
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3230
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3231
        (tagType == 34025) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3232
            "/ imageColorValue
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3233
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3234
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3235
        (tagType == 34026) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3236
            "/ backgroundColorValue
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3237
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3238
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3239
        (tagType == 34027) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3240
            "/ pixelIntensityRange
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3241
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3242
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3243
        (tagType == 34028) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3244
            "/ transparencyIndicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3245
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3246
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3247
        (tagType == 34029) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3248
            "/ colorCharacterization
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3249
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3250
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3251
        (tagType == 34030) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3252
            "/ hcUsage
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3253
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3254
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3255
        (tagType == 34031) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3256
            "/ trapIndicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3257
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3258
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3259
        (tagType == 34032) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3260
            "/ cmykEquivalent
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3261
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3262
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3263
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3264
        "/ Private Pixel magic
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3265
        (tagType == 34232) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3266
            "/ 'jbig options' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3267
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3268
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3269
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3270
        (tagType == 34264) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3271
            "/ 'geotiff ModelTransformationTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3272
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3273
        ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3274
        "/ private Photoshop
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3275
        (tagType == 34377) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3276
            "/ RICHTIFFIPTC
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3277
            "/ IPTC (International Press Telecommunications Council) metadata.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3278
            "/ (see http://www.iptc.org/std/photometadata/specification/IPTC-PhotoMetadata)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3279
            decodeMetaTags == true ifTrue:[
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3280
                Verbose == true ifTrue:[ 
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3281
                    Logger info:'      RICHTIFFIPTC: %1' with:value
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3282
                ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3283
                self decodePhotoshopImageResourceBlock:value.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3284
            ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3285
                Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3286
                    Logger info:'      skipped decoding of IPTC-PhotoMetadata'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3287
                ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3288
            ].    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3289
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3290
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3291
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3292
        (tagType == 34665) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3293
            "/ EXIFIFD
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3294
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3295
                Logger info:'      EXIFIFD: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3296
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3297
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3298
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3299
        (tagType == 34675) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3300
            "/ 'ICCPROFILE' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3301
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3302
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3303
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3304
        (tagType == 34732) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3305
            "/ 'ImageLayer' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3306
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3307
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3308
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3309
        (tagType == 34735) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3310
            "/ 'geotiff GeoKeyDirectoryTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3311
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3312
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3313
        (tagType == 34736) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3314
            "/ 'geotiff GeoDoubleParamsTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3315
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3316
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3317
        (tagType == 34737) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3318
            "/ 'geotiff GeoAsciiParamsTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3319
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3320
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3321
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3322
        
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3323
        (tagType == 34859) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3324
            "/ '???' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3325
            "/ Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3326
            "/     Logger info:'      ?: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3327
            "/ ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3328
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3329
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3330
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3331
        "/ More Private SGI
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3332
        (tagType == 34908) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3333
            "/ 'fax recv params' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3334
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3335
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3336
        (tagType == 34909) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3337
            "/ 'fax subaddress' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3338
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3339
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3340
        (tagType == 34910) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3341
            "/ 'fax recv time' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3342
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3343
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3344
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3345
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3346
    (tagType between:36000 and:36999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3347
        (tagType == 36867) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3348
            "/ '???' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3349
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3350
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3351
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3352
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3353
    (tagType between:37000 and:37999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3354
        (tagType == 37390) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3355
            "/ '???' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3356
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3357
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3358
        (tagType == 37391) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3359
            "/ '???' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3360
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3361
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3362
        (tagType == 37392) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3363
            "/ '???' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3364
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3365
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3366
        (tagType == 37398) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3367
            "/ '???' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3368
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3369
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3370
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3371
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3372
    (tagType between:42000 and:42999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3373
        (tagType == 42112) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3374
            "/ 'GDAL_METADATA' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3375
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3376
                Logger info:'      GDAL_METADATA: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3377
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3378
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3379
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3380
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3381
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3382
    "/ dng tags (see http://wwwimages.adobe.com/content/dam/Adobe/en/products/photoshop/pdfs/dng_spec_1.4.0.0.pdf)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3383
    (tagType between:50000 and:50999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3384
        (tagType == 50706) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3385
            "/ DNGVersion
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3386
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3387
                Logger info:'      DNGVersion: %1' with:value
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3388
            ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3389
            isDNGImage := true.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3390
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3391
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3392
        (tagType == 50707) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3393
            "/ DNGBackwardVersion
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3394
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3395
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3396
        (tagType == 50708) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3397
            "/ UniqueCameraModel
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3398
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3399
                Logger info:'      UniqueCameraModel: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3400
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3401
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3402
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3403
        (tagType == 50709) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3404
            "/ LocalizedCameraModel
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3405
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3406
                Logger info:'      LocalizedCameraModel: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3407
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3408
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3409
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3410
        (tagType == 50710) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3411
            "/ 'CFAPlaneColor' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3412
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3413
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3414
        (tagType == 50711) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3415
            "/ 'CFALayout' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3416
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3417
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3418
        (tagType == 50712) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3419
            "/ 'LinearizationTable' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3420
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3421
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3422
        (tagType == 50713) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3423
            "/ 'BlackLevelRepeatDim' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3424
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3425
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3426
        (tagType == 50714) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3427
            "/ 'BlackLevel' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3428
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3429
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3430
        (tagType == 50715) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3431
            "/ 'BlackLevelDeltaH' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3432
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3433
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3434
        (tagType == 50716) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3435
            "/ 'BlackLevelDeltaV' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3436
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3437
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3438
        (tagType == 50717) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3439
            "/ 'WhiteLevel' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3440
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3441
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3442
        (tagType == 50718) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3443
            "/ 'DefaultScale' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3444
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3445
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3446
        (tagType == 50719) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3447
            "/ 'DefaultCropOrigin' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3448
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3449
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3450
        (tagType == 50720) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3451
            "/ 'DefaultCropSize' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3452
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3453
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3454
        (tagType == 50721) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3455
            "/ 'ColorMatrix1' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3456
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3457
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3458
        (tagType == 50722) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3459
            "/ 'ColorMatrix2' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3460
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3461
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3462
        (tagType == 50723) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3463
            "/ 'CameraCalibrarion1' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3464
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3465
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3466
        (tagType == 50724) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3467
            "/ 'CameraCalibrarion2' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3468
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3469
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3470
        (tagType == 50725) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3471
            "/ 'ReductionMatrix1' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3472
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3473
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3474
        (tagType == 50726) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3475
            "/ 'ReductionMatrix2' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3476
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3477
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3478
        (tagType == 50727) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3479
            "/ 'AnalogBalance' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3480
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3481
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3482
        (tagType == 50728) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3483
            "/ 'AsShotNeutral' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3484
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3485
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3486
        (tagType == 50729) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3487
            "/ 'AsShotWhiteXY' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3488
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3489
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3490
        (tagType == 50730) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3491
            "/ 'BaselineExposure' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3492
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3493
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3494
        (tagType == 50731) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3495
            "/ 'BaselineNoise' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3496
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3497
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3498
        (tagType == 50732) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3499
            "/ 'BaselineSharpness' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3500
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3501
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3502
        (tagType == 50733) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3503
            "/ 'ByerGreenSplit' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3504
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3505
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3506
        (tagType == 50734) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3507
            "/ 'LinearResponseLimit' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3508
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3509
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3510
        (tagType == 50735) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3511
            "/ 'CameraSerialNumber' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3512
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3513
                Logger info:'      CameraSerialNumber: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3514
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3515
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3516
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3517
        (tagType == 50736) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3518
            "/ 'LensInfo' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3519
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3520
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3521
        (tagType == 50737) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3522
            "/ 'ChromaBlurRadius' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3523
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3524
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3525
        (tagType == 50738) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3526
            "/ 'AntiAliasStrength' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3527
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3528
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3529
        (tagType == 50739) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3530
            "/ 'ShadowScale' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3531
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3532
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3533
        (tagType == 50740) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3534
            "/ 'DNGPrivateData' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3535
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3536
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3537
        (tagType == 50741) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3538
            "/ 'MakerNoteSafety' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3539
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3540
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3541
        
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3542
        (tagType == 50778) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3543
            "/ 'CalibrationIlluminant1' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3544
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3545
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3546
        (tagType == 50779) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3547
            "/ 'CalibrationIlluminant2' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3548
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3549
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3550
        (tagType == 50780) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3551
            "/ 'BestQualityScale' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3552
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3553
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3554
        (tagType == 50781) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3555
            "/ 'RawDataUniqueID' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3556
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3557
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3558
        
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3559
        (tagType == 50827) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3560
            "/ 'OriginalRawFileName' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3561
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3562
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3563
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3564
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3565
"/
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3566
"/ 'TIFFReader: tag:' print. tagType print. ' typ:' print. numberType print.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3567
"/ ' len:' print. length print. ' offs:' print. offset print. 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3568
"/ ' val:' print. value print. ' valArr:' print. valueArray printNewline.  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3569
"/
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3570
    'TIFFReader [warning]: unknown tag type ' errorPrint. tagType errorPrintCR
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3571
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3572
    "Modified (format): / 23-05-2017 / 16:12:58 / mawalch"
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  3573
    "Modified: / 28-08-2017 / 00:48:37 / cg"
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3574
!
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3575
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3576
positionToStrip:stripNr
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3577
    inStream position:(stripOffsets at:stripNr).
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3578
!
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3579
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3580
positionToTile:tileNr
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3581
    inStream position:((metaData at:#'TileOffsets') at:tileNr).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3582
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3583
    "Created: / 25-08-2017 / 13:43:30 / cg"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3584
!
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3585
1838
2476baed377c make it compilable with old stc's, which do not care for the signed keyword.
Claus Gittinger <cg@exept.de>
parents: 1830
diff changeset
  3586
readBytes:n signed:isSigned
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3587
    "read n 8bit signed or unsigned integers and return them in an array or byteArray"
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3588
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3589
    |oldPos offset bytes nInline|
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3590
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3591
    nInline := isBigTiff ifTrue:[8] ifFalse:[4].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3592
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3593
    n == 0 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3594
        "/ even in this case, one WORD is to be skipped.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3595
        inStream skip:nInline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3596
        ^ ''
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3597
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3598
1838
2476baed377c make it compilable with old stc's, which do not care for the signed keyword.
Claus Gittinger <cg@exept.de>
parents: 1830
diff changeset
  3599
    bytes := (isSigned ifTrue:[Array] ifFalse:[ByteArray]) new:n.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3600
    (n <= nInline) ifTrue:[
1838
2476baed377c make it compilable with old stc's, which do not care for the signed keyword.
Claus Gittinger <cg@exept.de>
parents: 1830
diff changeset
  3601
        isSigned ifTrue:[
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3602
            1 to:n do:[:i | bytes at:i put:(inStream nextSignedByte) ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3603
        ] ifFalse:[
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3604
            inStream nextBytes:n into:bytes.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3605
        ].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3606
        (n < nInline) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3607
            inStream skip:(nInline - n).
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3608
        ]
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3609
    ] ifFalse:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3610
        offset := inStream nextInt32MSB:(byteOrder ~~ #lsb).
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3611
        oldPos := inStream position.
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3612
        inStream position:offset.
1838
2476baed377c make it compilable with old stc's, which do not care for the signed keyword.
Claus Gittinger <cg@exept.de>
parents: 1830
diff changeset
  3613
        isSigned ifTrue:[
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3614
            1 to:n do:[:i | bytes at:i put:(inStream nextSignedByte) ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3615
        ] ifFalse:[
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3616
            inStream nextBytes:n into:bytes.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3617
        ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3618
        inStream position:oldPos
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3619
    ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3620
    ^ bytes
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3621
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3622
    "Modified: / 27-08-2017 / 19:56:23 / cg"
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3623
!
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3624
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3625
readChars:n
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3626
    "read n characters and return them in a string"
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3627
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3628
    |oldPos offset string nInline|
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3629
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3630
    nInline := isBigTiff ifTrue:[8] ifFalse:[4].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3631
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3632
    n == 0 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3633
        "/ even in this case, one WORD is to be skipped.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3634
        inStream skip:nInline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3635
        ^ ''
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3636
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3637
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3638
    string := String new:(n - 1).
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3639
    (n <= nInline) ifTrue:[
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3640
        inStream nextBytes:(n - 1) into:string.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3641
        inStream next. "/ skip the 0-byte.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3642
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3643
        (n < nInline) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3644
            inStream skip:(nInline - n).
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3645
        ]
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3646
    ] ifFalse:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3647
        offset := inStream nextInt32MSB:(byteOrder == #msb).
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3648
        oldPos := inStream position.
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3649
        inStream position:offset.
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3650
        inStream nextBytes:(n - 1) into:string.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3651
        inStream position:oldPos
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3652
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3653
    ^ string
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3654
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3655
    "Modified: / 27-08-2017 / 19:55:15 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3656
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3657
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3658
readDoubles:nFloats
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  3659
    "read nFloats IEEE 64bit doubles and return them in an array"
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3660
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3661
    |oldPos offset values val msb 
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3662
     n "{ Class: SmallInteger }" |
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3663
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3664
    n := nFloats.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3665
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3666
    msb := byteOrder ~~ #lsb.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3667
    values := DoubleArray basicNew:n.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3668
    (n == 1) ifTrue:[
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  3669
        val := Float readBinaryIEEEDoubleFrom:inStream MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3670
        values at:1 put:val.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3671
    ] ifFalse:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3672
        offset := inStream nextInt32MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3673
        oldPos := inStream position.
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3674
        inStream position:offset.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3675
        1 to:n do:[:index |
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  3676
            val := Float readBinaryIEEEDoubleFrom:inStream MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3677
            values at:index put:val
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3678
        ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3679
        inStream position:oldPos
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3680
    ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3681
    ^ values
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3682
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3683
    "Modified: / 24-08-2017 / 23:28:22 / cg"
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3684
!
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3685
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3686
readFloats:nFloats
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3687
    "read nFloats IEEE 32bit floats and return them in an array"
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3688
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3689
    |oldPos offset values val val1 val2 msb 
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3690
     n "{ Class: SmallInteger }" |
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3691
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3692
    n := nFloats.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3693
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3694
    msb := byteOrder ~~ #lsb.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3695
    values := FloatArray basicNew:n.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3696
    (isBigTiff and:[ n == 2 ]) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3697
        val1 := ShortFloat readBinaryIEEESingleFrom:inStream MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3698
        val2 := ShortFloat readBinaryIEEESingleFrom:inStream MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3699
        values at:1 put:val1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3700
        n == 2 ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3701
            values at:2 put:val2.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3702
        ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3703
    ] ifFalse:[    
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3704
        (n == 1) ifTrue:[
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  3705
            val := ShortFloat readBinaryIEEESingleFrom:inStream MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3706
            values at:1 put:val.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3707
        ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3708
            offset := inStream nextInt32MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3709
            oldPos := inStream position.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3710
            inStream position:offset.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3711
            1 to:n do:[:index |
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3712
                val := ShortFloat readBinaryIEEESingleFrom:inStream MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3713
                values at:index put:val
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3714
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3715
            inStream position:oldPos
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3716
        ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3717
    ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3718
    ^ values
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3719
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3720
    "Modified: / 24-08-2017 / 23:36:39 / cg"
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3721
!
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3722
1838
2476baed377c make it compilable with old stc's, which do not care for the signed keyword.
Claus Gittinger <cg@exept.de>
parents: 1830
diff changeset
  3723
readFracts:nFracts signed:isSigned
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3724
    "read nFracts fractions (2 32bit words) and return them in an array"
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3725
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3726
    |oldPos offset values numerator denominator msb
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3727
     n "{ Class: SmallInteger }" |
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3728
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3729
    n := nFracts.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3730
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3731
    msb := byteOrder ~~ #lsb.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3732
    values := Array basicNew:n.
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3733
    offset := inStream nextInt32MSB:msb.
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3734
    oldPos := inStream position.
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3735
    inStream position:offset.
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3736
    1 to:n do:[:index |
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3737
        numerator := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3738
        denominator := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3739
        values at:index put:(Fraction numerator:numerator denominator:denominator)
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3740
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3741
    inStream position:oldPos.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3742
    ^ values
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3743
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3744
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3745
readLong8s:nLongs signed:isSigned
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3746
    "read nLongs signed or unsigned long8 numbers (64bit) and return them in an array"
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3747
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3748
    |oldPos offset values val msb 
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3749
     n "{ Class: SmallInteger }" |
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3750
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3751
    n := nLongs.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3752
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3753
    msb := byteOrder ~~ #lsb.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3754
    values := Array basicNew:n.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3755
    (n == 1) ifTrue:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3756
        val := isSigned ifTrue:[inStream nextInt64MSB:msb] ifFalse:[inStream nextUnsignedInt64MSB:msb].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3757
        values at:1 put:val.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3758
    ] ifFalse:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3759
        offset := inStream nextInt64MSB:msb.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3760
        oldPos := inStream position.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3761
        inStream position:offset.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3762
        1 to:n do:[:index |
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3763
            val := isSigned ifTrue:[inStream nextInt64MSB:msb] ifFalse:[inStream nextUnsignedInt64MSB:msb].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3764
            values at:index put:val
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3765
        ].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3766
        inStream position:oldPos
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3767
    ].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3768
    ^ values
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3769
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3770
    "Created: / 24-08-2017 / 22:01:26 / cg"
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3771
!
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3772
1838
2476baed377c make it compilable with old stc's, which do not care for the signed keyword.
Claus Gittinger <cg@exept.de>
parents: 1830
diff changeset
  3773
readLongs:nLongs signed:isSigned
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3774
    "read nLongs signed or unsigned long numbers (32bit) and return them in an array"
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3775
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3776
    |oldPos offset values val val1 val2 msb 
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3777
     n "{ Class: SmallInteger }" |
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3778
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3779
    n := nLongs.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3780
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3781
    msb := byteOrder ~~ #lsb.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3782
    values := Array basicNew:n.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3783
    (isBigTiff and:[ n <= 2 ]) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3784
        val1 := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3785
        val2 := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3786
        values at:1 put:val1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3787
        n == 2 ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3788
            values at:2 put:val2.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3789
        ].
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3790
    ] ifFalse:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3791
        (n == 1) ifTrue:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3792
            val := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3793
            values at:1 put:val.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3794
        ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3795
            offset := inStream nextInt32MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3796
            oldPos := inStream position.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3797
            inStream position:offset.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3798
            1 to:n do:[:index |
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3799
                val := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3800
                values at:index put:val
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3801
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3802
            inStream position:oldPos
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3803
        ].
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3804
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3805
    ^ values
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3806
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3807
    "Modified: / 24-08-2017 / 23:35:38 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3808
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3809
1838
2476baed377c make it compilable with old stc's, which do not care for the signed keyword.
Claus Gittinger <cg@exept.de>
parents: 1830
diff changeset
  3810
readShorts:nShorts signed:isSigned
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3811
    "read nShorts signed or unsigned short numbers (16bit) and return them in an array"
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3812
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3813
    |oldPos offset values msb val1 val2 val3 val4
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3814
     n "{ Class: SmallInteger }" |
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3815
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3816
    n := nShorts.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3817
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3818
    msb := (byteOrder ~~ #lsb).
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3819
    values := Array basicNew:n.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3820
    (isBigTiff and:[ (n <= 4) ]) ifTrue:[ 
1838
2476baed377c make it compilable with old stc's, which do not care for the signed keyword.
Claus Gittinger <cg@exept.de>
parents: 1830
diff changeset
  3821
        isSigned ifTrue:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3822
            val1 := inStream nextInt16MSB:msb.
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3823
            val2 := inStream nextInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3824
            val3 := inStream nextInt16MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3825
            val4 := inStream nextInt16MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3826
        ] ifFalse:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3827
            val1 := inStream nextUnsignedInt16MSB:msb.
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3828
            val2 := inStream nextUnsignedInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3829
            val3 := inStream nextUnsignedInt16MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3830
            val4 := inStream nextUnsignedInt16MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3831
        ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3832
        values at:1 put:val1.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3833
        (n >= 2) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3834
            values at:2 put:val2.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3835
            (n >= 3) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3836
                values at:3 put:val3.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3837
                (n == 4) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3838
                    values at:4 put:val4.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3839
                ]
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3840
            ]
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3841
        ]
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3842
    ] ifFalse:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3843
        (n <= 2) ifTrue:[
1838
2476baed377c make it compilable with old stc's, which do not care for the signed keyword.
Claus Gittinger <cg@exept.de>
parents: 1830
diff changeset
  3844
            isSigned ifTrue:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3845
                val1 := inStream nextInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3846
                val2 := inStream nextInt16MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3847
            ] ifFalse:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3848
                val1 := inStream nextUnsignedInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3849
                val2 := inStream nextUnsignedInt16MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3850
            ].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3851
            values at:1 put:val1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3852
            (n == 2) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3853
                values at:2 put:val2
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3854
            ]
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3855
        ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3856
            offset := inStream nextInt32MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3857
            oldPos := inStream position.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3858
            inStream position:offset.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3859
            1 to:n do:[:index |
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3860
                isSigned ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3861
                    val1 := inStream nextInt16MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3862
                ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3863
                    val1 := inStream nextUnsignedInt16MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3864
                ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3865
                values at:index put:val1
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3866
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3867
            inStream position:oldPos
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3868
        ].
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3869
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3870
    ^ values
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3871
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3872
    "Modified: / 24-08-2017 / 23:33:09 / cg"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3873
!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3874
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3875
readSingleTagFrom:aStream
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3876
    |msb tagType numberType length|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3877
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3878
    msb := (byteOrder == #msb).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3879
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3880
    tagType := aStream nextUnsignedInt16MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3881
    numberType := aStream nextUnsignedInt16MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3882
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3883
    isBigTiff ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3884
        length := aStream nextInt32MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3885
    ] ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3886
        length := aStream nextInt64MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3887
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3888
    self decodeTiffTag:tagType numberType:numberType length:length.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3889
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3890
    "Created: / 26-08-2017 / 11:04:50 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3891
    "Modified (format): / 26-08-2017 / 22:37:58 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3892
!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3893
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3894
readTagsFrom:aStream
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3895
    |numberOfTags msb|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3896
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3897
    msb := (byteOrder == #msb).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3898
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3899
    isBigTiff ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3900
        numberOfTags := aStream nextUnsignedInt16MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3901
    ] ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3902
        numberOfTags := aStream nextUnsignedInt64MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3903
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3904
    1 to:numberOfTags do:[:index |
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3905
        self readSingleTagFrom:aStream.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3906
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3907
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3908
    "Created: / 26-08-2017 / 11:03:45 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3909
! !
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3910
1762
55cf76514c8c method category rename
Claus Gittinger <cg@exept.de>
parents: 1759
diff changeset
  3911
!TIFFReader methodsFor:'private-writing'!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3912
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3913
writeBitsPerSample
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
  3914
"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3915
'bitsPerSample: ' print. bitsPerSample printNewline.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3916
'store bitspersample at: ' print. outStream position printNewline.
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
  3917
"
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3918
    bitsPerSamplePos := outStream position.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3919
    bitsPerSample do:[:n |
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  3920
        self writeShort:n
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3921
    ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3922
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3923
3f9277473954 Initial revision
claus
parents:
diff changeset
  3924
writeColorMap
28
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
  3925
    |n|
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
  3926
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3927
    colorMapPos := outStream position.
35
f13cdd0b44c7 *** empty log message ***
claus
parents: 32
diff changeset
  3928
    #(red green blue) do:[:component |
440
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3929
        n := 0.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3930
        colorMap do:[:clr |
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3931
            |entry|
35
f13cdd0b44c7 *** empty log message ***
claus
parents: 32
diff changeset
  3932
440
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3933
            clr isNil ifTrue:[
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3934
                entry := 0
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3935
            ] ifFalse:[
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3936
                entry := clr perform:component.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3937
                "
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3938
                 tiff map is 16 bit - scale from percent to 0..16rFFFF
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3939
                "
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3940
                entry := (entry * 16rFFFF / 100) rounded.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3941
            ].
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3942
            self writeShort:entry.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3943
            n := n + 1
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3944
        ].
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3945
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3946
        "
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3947
         fill to 256 entries
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3948
        "
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3949
        [n < 256] whileTrue:[
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3950
            self writeShort:0.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3951
            n := n + 1.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3952
        ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3953
    ]
440
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3954
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3955
    "Modified: 20.2.1997 / 18:06:10 / cg"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3956
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3957
3f9277473954 Initial revision
claus
parents:
diff changeset
  3958
writeStripByteCounts
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
  3959
"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3960
'stripByteCounts: ' print. stripByteCounts printNewline.
3f9277473954 Initial revision
claus
parents:
diff changeset
  3961
'store stripbytecounts at: ' print. outStream position printNewline.
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
  3962
"
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3963
    stripByteCountsPos := outStream position.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3964
    stripByteCounts do:[:c |
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  3965
        self writeShort:c
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3966
    ]
3f9277473954 Initial revision
claus
parents:
diff changeset
  3967
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3968
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3969
writeStripOffsets
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
  3970
"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3971
'stripOffsets: ' print. stripOffsets printNewline.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3972
'store stripoffsets at: ' print. outStream position printNewline.
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
  3973
"
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3974
    stripOffsetsPos := outStream position.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3975
    stripOffsets do:[:o |
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  3976
        self writeLong:o
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3977
    ]
3f9277473954 Initial revision
claus
parents:
diff changeset
  3978
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3979
3f9277473954 Initial revision
claus
parents:
diff changeset
  3980
writeTag:tagType
3f9277473954 Initial revision
claus
parents:
diff changeset
  3981
    self writeTiffTag:tagType.
3f9277473954 Initial revision
claus
parents:
diff changeset
  3982
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3983
3f9277473954 Initial revision
claus
parents:
diff changeset
  3984
writeTiffTag:tagType
3f9277473954 Initial revision
claus
parents:
diff changeset
  3985
    |value valueArray numberType count address|
3f9277473954 Initial revision
claus
parents:
diff changeset
  3986
3f9277473954 Initial revision
claus
parents:
diff changeset
  3987
    count := 1.
3f9277473954 Initial revision
claus
parents:
diff changeset
  3988
    address := nil.
3f9277473954 Initial revision
claus
parents:
diff changeset
  3989
    (tagType == 253) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3990
        "tiff class"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3991
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3992
    (tagType == 254) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  3993
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3994
    (tagType == 255) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3995
        "SubfileType"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3996
        value := subFileType.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3997
        numberType := #long.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3998
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3999
    (tagType == 256) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4000
        "ImageWidth"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4001
        value := width.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4002
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4003
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4004
    (tagType == 257) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4005
        "ImageHeight"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4006
        value := height.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4007
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4008
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4009
    (tagType == 258) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4010
        "bitspersample"
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  4011
        address := bitsPerSamplePos.
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4012
        numberType := #short.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4013
        count := bitsPerSample size.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4014
        valueArray := bitsPerSample
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4015
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4016
    (tagType == 259) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4017
        "compression"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4018
        value := compression.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4019
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4020
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4021
    (tagType == 262) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4022
        "photometric"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4023
        (photometric == #whiteIs0) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4024
            value := 0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4025
        ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4026
            (photometric == #blackIs0) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4027
                value := 1
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4028
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4029
                (photometric == #rgb) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4030
                    value := 2
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4031
                ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4032
                    (photometric == #palette) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4033
                        value := 3
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4034
                    ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4035
                        (photometric == #transparency) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4036
                            value := 4
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4037
                        ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4038
                            self error:'bad photometric' mayProceed:true.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4039
                        ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4040
                    ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4041
                ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4042
            ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4043
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4044
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4045
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4046
    (tagType == 263) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4047
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4048
    (tagType == 264) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4049
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4050
    (tagType == 265) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4051
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4052
    (tagType == 266) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4053
        "fillOrder"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4054
        (fillOrder == #msb) ifTrue:[
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4055
            value := FILLORDER_MSB2LSB
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4056
        ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4057
            (fillOrder == #lsb) ifTrue:[
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4058
                value := FILLORDER_LSB2MSB
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4059
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4060
                self error:'bad fillOrder' mayProceed:true
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4061
            ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4062
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4063
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4064
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4065
    (tagType == 269) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4066
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4067
    (tagType == 270) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4068
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4069
    (tagType == 271) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4070
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4071
    (tagType == 272) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4072
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4073
    (tagType == 273) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4074
        "stripoffsets"
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  4075
        address := stripOffsetsPos.
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4076
        numberType := #long.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4077
        count := stripOffsets size.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4078
        valueArray := stripOffsets
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4079
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4080
    (tagType == 274) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4081
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4082
    (tagType == 277) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4083
        "samplesPerPixel"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4084
        value := samplesPerPixel.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4085
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4086
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4087
    (tagType == 278) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4088
        "rowsperstrip"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4089
        value := rowsPerStrip.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4090
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4091
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4092
    (tagType == 279) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4093
        "stripbytecount"
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  4094
        address := stripByteCountsPos.
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4095
        numberType := #short.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4096
        count := stripByteCounts size.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4097
        valueArray := stripByteCounts
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4098
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4099
    (tagType == 280) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4100
        "min sample value"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4101
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4102
    (tagType == 281) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4103
        "max sample value"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4104
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4105
    (tagType == 282) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4106
        "x resolution"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4107
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4108
    (tagType == 283) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4109
        "y resolution"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4110
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4111
    (tagType == 284) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4112
        "planarconfig"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4113
        value := planarConfiguration.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4114
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4115
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4116
    (tagType == 285) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4117
        "pageName"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4118
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4119
    (tagType == 286) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4120
        "xPosition"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4121
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4122
    (tagType == 287) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4123
        "yPosition"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4124
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4125
    (tagType == 288) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4126
        "freeOffsets"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4127
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4128
    (tagType == 289) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4129
        "freeByteCounts"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4130
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4131
    (tagType == 290) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4132
        "grayResponceUnit"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4133
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4134
    (tagType == 291) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4135
        "grayResponceCurve"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4136
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4137
    (tagType == 292) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4138
        "group3options"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4139
        value := group3options.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4140
        numberType := #long.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4141
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4142
    (tagType == 293) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4143
        "group4options"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4144
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4145
    (tagType == 296) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4146
        "resolutionunit"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4147
        ^ self
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4148
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4149
    (tagType == 297) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4150
        "pageNumber"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4151
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4152
    (tagType == 300) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4153
        "colorResponceUnit"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4154
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4155
    (tagType == 301) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4156
        "colorResponceCurve"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4157
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4158
    (tagType == 306) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4159
        "dateTime"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4160
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4161
    (tagType == 315) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4162
        "artist"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4163
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4164
    (tagType == 317) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4165
        "predictor"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4166
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4167
    (tagType == 320) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4168
        "colormap"
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  4169
        address := colorMapPos.
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4170
        numberType := #short.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4171
        count := 256 "(colorMap at:1) size" * 3.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4172
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4173
3f9277473954 Initial revision
claus
parents:
diff changeset
  4174
    (value isNil and:[address isNil]) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4175
        self error:'unhandled tag' mayProceed:true.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4176
        ^ self
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4177
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4178
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
  4179
"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4180
'tag:' print. tagType print. ' typ:' print. numberType print.
3f9277473954 Initial revision
claus
parents:
diff changeset
  4181
' len:' print. count print.
3f9277473954 Initial revision
claus
parents:
diff changeset
  4182
' val:' print. value printNewline.  
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
  4183
"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4184
3f9277473954 Initial revision
claus
parents:
diff changeset
  4185
    self writeShort:tagType.
3f9277473954 Initial revision
claus
parents:
diff changeset
  4186
    numberType == #short ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4187
        self writeShort:3.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4188
        self writeLong:count.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4189
    ] ifFalse:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4190
        numberType == #long ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4191
            self writeShort:4.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4192
            self writeLong:count.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4193
        ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4194
            numberType == #byte ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4195
                self writeShort:1.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4196
                self writeLong:count.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4197
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4198
                self error:'bad numbertype'
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4199
            ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4200
        ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4201
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4202
    address notNil ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4203
        (numberType == #long and:[count == 1]) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4204
            self writeLong:(valueArray at:1).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4205
            ^ self
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4206
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4207
        (numberType == #short and:[count <= 2]) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4208
            self writeShort:(valueArray at:1).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4209
            count == 2 ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4210
                self writeShort:(valueArray at:2).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4211
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4212
                self writeShort:0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4213
            ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4214
            ^ self
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4215
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4216
        (numberType == #byte and:[count <= 4]) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4217
            outStream nextPut:(valueArray at:1).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4218
            count > 1 ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4219
                outStream nextPut:(valueArray at:2).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4220
                count > 2 ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4221
                    outStream nextPut:(valueArray at:3).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4222
                    count > 3 ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4223
                        outStream nextPut:(valueArray at:4).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4224
                    ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4225
                        outStream nextPut:0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4226
                    ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4227
                ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4228
                    outStream nextPut:0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4229
                ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4230
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4231
                outStream nextPut:0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4232
            ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4233
            ^ self
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4234
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4235
        self writeLong:address.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4236
        ^ self
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4237
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4238
    numberType == #short ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4239
        self writeShort:value.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4240
        self writeShort:0
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4241
    ] ifFalse:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4242
        numberType == #long ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4243
            self writeLong:value
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4244
        ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4245
            numberType == #byte ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4246
                outStream nextPut:value.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4247
                outStream nextPut:0.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4248
                outStream nextPut:0.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4249
                outStream nextPut:0.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4250
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4251
                self error:'bad numbertype'
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4252
            ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4253
        ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4254
    ].
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4255
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4256
    "Modified: / 28-08-2017 / 00:47:52 / cg"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4257
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  4258
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4259
writeUncompressedBits
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4260
    "write bits as one or multiple strips"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4261
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4262
    |offs bytesPerRow nBytes
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4263
     h "{ Class: SmallInteger }"|
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4264
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4265
    nBytes := data size.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4266
    nBytes < 16rFFFF ifTrue:[
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  4267
        stripOffsets := Array with:(outStream position).
1703
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4268
        stripByteCounts := Array with:nBytes.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4269
        outStream nextPutBytes:nBytes from:data.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4270
        rowsPerStrip := height
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4271
    ] ifFalse:[
1703
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4272
        stripOffsets := Array basicNew:height.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4273
        bytesPerRow := nBytes // height.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4274
        stripByteCounts := (Array basicNew:height) atAllPut:bytesPerRow.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4275
1703
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4276
        offs := 1.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4277
        h := height.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4278
        1 to:h do:[:row |
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  4279
            stripOffsets at:row put:(outStream position).
1703
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4280
            outStream nextPutBytes:bytesPerRow from:data startingAt:offs.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4281
            offs := offs + bytesPerRow
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4282
        ].
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4283
        rowsPerStrip := 1
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4284
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4285
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4286
    'stripOffsets: ' print. stripOffsets printNewline.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4287
    'stripByteCounts: ' print. stripByteCounts printNewline.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4288
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4289
! !
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4290
1805
93f557cbe600 category changes
Claus Gittinger <cg@exept.de>
parents: 1785
diff changeset
  4291
!TIFFReader methodsFor:'reading'!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4292
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4293
fromStream:aStream
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4294
    "read a stream containing a TIFF image.
3899
fd43372bf11d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3777
diff changeset
  4295
     Leave image description in instance variables.
fd43372bf11d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3777
diff changeset
  4296
     (i.e. to get the image, ask with image)."
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4297
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4298
    |char1 char2 version offset msb
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4299
     bytesPerRow img moreIfds|
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4300
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4301
    inStream := aStream.
331
304f9c439efa allow reading from ByteArray-readStreams
Claus Gittinger <cg@exept.de>
parents: 329
diff changeset
  4302
    aStream binary.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4303
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4304
    char1 := aStream next.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4305
    char2 := aStream next.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4306
    
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4307
    "/ first two chars are either II (intel byte order) 
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4308
    "/ or MM (motorola byte orrder)
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4309
    (char1 ~~ char2) ifTrue:[
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  4310
        ^ self fileFormatError:'not a tiff file'.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4311
    ].
1953
90f3c42ef3c1 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1846
diff changeset
  4312
    (char1 == $I codePoint) ifTrue:[
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4313
        byteOrder := #lsb.
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4314
        msb := false.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4315
    ] ifFalse:[
1953
90f3c42ef3c1 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1846
diff changeset
  4316
        (char1 == $M codePoint) ifTrue:[
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4317
            byteOrder := #msb.
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4318
            msb := true.
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4319
        ] ifFalse:[
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  4320
            ^ self fileFormatError:'not a tiff file'.
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4321
        ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4322
    ].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4323
    
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4324
    version := aStream nextUnsignedInt16MSB:msb.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4325
    (version == 42) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4326
        isBigTiff := false.
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4327
    ] ifFalse:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4328
       (version == 43) ifTrue:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4329
            |byteSizeOfOffsets always0|
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4330
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4331
            "/ 43 is the proposed bigtiff format
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4332
            isBigTiff := true.
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4333
            byteSizeOfOffsets := aStream nextUnsignedInt16MSB:msb.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4334
            byteSizeOfOffsets == 8 ifFalse:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4335
                ^ self fileFormatError:'version of bigtiff-file not supported'.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4336
            ].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4337
            always0 := aStream nextUnsignedInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4338
            always0 == 0 ifFalse:[
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4339
                ^ self fileFormatError:'version of bigtiff-file not supported'.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4340
            ].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4341
        ] ifFalse:[    
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4342
            ^ self fileFormatError:'version of tiff-file not supported'.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4343
        ].
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4344
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4345
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4346
    imageSequence := ImageSequence new.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4347
    isDNGImage := false.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4348
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4349
    isBigTiff ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4350
        offset := aStream nextUnsignedInt32MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4351
    ] ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4352
        offset := aStream nextUnsignedInt64MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4353
    ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4354
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4355
    [ offset ~~ 0 ] whileTrue:[    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4356
        Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4357
            Logger info:'------------------ reading image #%1 ------------------' with:imageSequence size+1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4358
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4359
        
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4360
        aStream position:offset.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4361
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4362
        "setup default values"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4363
        metaData := TIFFMetaData new.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4364
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4365
        compression := 1. "none"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4366
        fillOrder := #msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4367
        planarConfiguration := PLANARCONFIG_CONTIG.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4368
        photometric := nil.
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4369
        bitsPerSample := nil.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4370
        samplesPerPixel := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4371
        width := height := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4372
        stripOffsets := stripByteCounts := rowsPerStrip := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4373
        "resolutionUnit := 2."
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4374
        predictor := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4375
        group3options := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4376
        orientation := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4377
        subFileType := subIfds := nil.
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4378
        sampleFormat := SAMPLEFORMAT_UINT.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4379
        minSampleValue := maxSampleValue := nil.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4380
        tileWidth := tileLength := tileOffsets := tileByteCounts := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4381
        
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4382
        self readTagsFrom:aStream.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4383
        "/ read the next offset now,
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4384
        "/ because the stream's position will be changed when the image-data is read
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4385
        isBigTiff ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4386
            offset := aStream nextUnsignedInt32MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4387
        ] ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4388
            offset := aStream nextUnsignedInt64MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4389
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4390
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4391
        "check for required tags"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4392
        width isNil ifTrue:[ ^ self fileFormatError:'missing width tag' ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4393
        height isNil ifTrue:[ ^ self fileFormatError:'missing length tag' ].
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4394
        bitsPerSample isNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4395
            bitsPerSample := Array new:samplesPerPixel withAll:1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4396
        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4397
        
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4398
        photometric isNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4399
            "/ try to repair
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4400
            bitsPerSample sum == 1 ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4401
                photometric := #whiteIs0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4402
            ] ifFalse:[    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4403
                ^ self fileFormatError:'missing photometric tag' 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4404
            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4405
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4406
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4407
        "given all the information, read the bits"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4408
        tileWidth notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4409
            tileOffsets := tileOffsets ? stripOffsets.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4410
            tileByteCounts := tileByteCounts ? stripByteCounts.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4411
            (tileOffsets notNil 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4412
                and:[tileLength notNil
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4413
                and:[tileByteCounts notNil ]]
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4414
            ) ifFalse:[    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4415
                ^ self fileFormatError:'missing stripOffsets (or tileOffsets)'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4416
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4417
            self reportDimension.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4418
            self readTiledTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4419
        ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4420
            stripByteCounts isNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4421
                stripOffsets size == 1 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4422
                    stripByteCounts := Array with:(self bitsPerPixel // 8) * width * height
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4423
                ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4424
                    ^ self fileFormatError:'missing stripByteCounts'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4425
                ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4426
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4427
            rowsPerStrip isNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4428
                rowsPerStrip := height
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4429
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4430
            self reportDimension.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4431
            self readTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4432
        ].
3693
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  4433
    
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4434
        orientation notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4435
            orientation == #unsupported ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4436
                'TIFFReader [warning]: unsupported orientation' errorPrintCR
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4437
            ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4438
                orientation == #vFlip ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4439
                    |tmp offset1 offset2|
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4440
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4441
                    "/ reverse rows to top-to bottom 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4442
                    "/ (oops - depends on side-effecting the data array)
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4443
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4444
                    bytesPerRow := self bytesPerRow.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4445
                    tmp := ByteArray new:bytesPerRow.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4446
                    offset1 := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4447
                    offset2 := (height-1)*bytesPerRow + 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4448
                    0 to:((height-1)//2) do:[:row |
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4449
                        tmp replaceFrom:1 to:bytesPerRow with:data startingAt:offset1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4450
                        data replaceFrom:offset1 to:(offset1+bytesPerRow-1) with:data startingAt:offset2.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4451
                        data replaceFrom:offset2 to:(offset2+bytesPerRow-1) with:tmp startingAt:1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4452
                        offset1 := offset1 + bytesPerRow.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4453
                        offset2 := offset2 - bytesPerRow.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4454
                    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4455
                ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4456
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4457
        ].
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4458
        
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4459
        "/ fixup photoetric
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4460
        photometric == #rgb ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4461
            samplesPerPixel == 4 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4462
                photometric := #rgba
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4463
            ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4464
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4465
        
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4466
        img := self makeImage.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4467
        img imageSequence:imageSequence.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4468
        imageSequence add:(ImageFrame new image:img).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4469
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4470
        offset == 0 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4471
            moreIfds isNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4472
                subIfds notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4473
                    (isDNGImage not or:[loadFullResolutionImage == true]) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4474
                        moreIfds := OrderedCollection withAll:subIfds.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4475
                        subIfds := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4476
                    ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4477
                        Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4478
                            Logger info:'skip high resolution images (use loadFullResolutionImage is false)'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4479
                        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4480
                    ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4481
                ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4482
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4483
            moreIfds notEmptyOrNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4484
                offset := moreIfds removeFirst
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4485
            ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4486
        ].    
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4487
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4488
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4489
    imageSequence size > 1 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4490
        Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4491
            Logger info:'read %1 images' with:imageSequence size
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4492
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4493
    ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4494
    ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4495
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4496
    "Modified: / 27-08-2017 / 23:24:37 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4497
! !
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4498
1805
93f557cbe600 category changes
Claus Gittinger <cg@exept.de>
parents: 1785
diff changeset
  4499
!TIFFReader methodsFor:'writing'!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4500
1571
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4501
save:image onStream:aStream
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4502
    "save image as (uncompressed) TIFF file on aFileName"
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4503
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4504
    |pos1 pos indicator|
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4505
1078
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4506
    image mask notNil ifTrue:[
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4507
        Image informationLostQuerySignal
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4508
            raiseWith:image
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4509
            errorString:('TIFF writer does not (yet) support an imageMask').
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4510
    ].
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4511
1571
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4512
    outStream := aStream.
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4513
    outStream binary.
461
bacef118f54a more signals to be raised if anything happens during
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
  4514
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4515
    "save as msb"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4516
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4517
    byteOrder := #msb.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4518
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4519
    byteOrder := #lsb.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4520
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4521
    fillOrder := #msb.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4522
    width := image width.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4523
    height := image height.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4524
    photometric := image photometric.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4525
    samplesPerPixel := image samplesPerPixel.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4526
    bitsPerSample := image bitsPerSample.
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  4527
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4528
    colorMap := image colorMap.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4529
    planarConfiguration := PLANARCONFIG_CONTIG.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4530
    compression := 1.   "none"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4531
    data := image bits.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4532
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4533
    currentOffset := 0.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4534
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4535
    (byteOrder == #msb) ifTrue:[
1953
90f3c42ef3c1 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1846
diff changeset
  4536
        indicator := $M codePoint.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4537
    ] ifFalse:[
1953
90f3c42ef3c1 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1846
diff changeset
  4538
        indicator := $I codePoint.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4539
    ].
1571
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4540
    outStream nextPut:indicator; nextPut:indicator.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4541
    currentOffset := currentOffset + 2.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4542
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4543
    self writeShort:42.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4544
    currentOffset := currentOffset + 2.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4545
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4546
    pos1 := outStream position.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4547
    self writeLong:0.           "start of tags - filled in later"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4548
    currentOffset := currentOffset + 4.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4549
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4550
    "output strips"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4551
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4552
    self writeUncompressedBits. "this outputs bits as strips, sets stripOffsets and stripByteCounts"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4553
    self writeStripOffsets.     "this outputs strip offsets, sets stripOffsetsPos"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4554
    self writeStripByteCounts.  "this outputs strip bytecounts, sets stripByteCountPos"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4555
    self writeBitsPerSample.    "this outputs bitsPerSample, sets bitsPerSamplePos"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4556
    photometric == #palette ifTrue:[
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4557
        self writeColorMap      "this outputs colorMap, sets colorMapPos"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4558
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4559
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  4560
    pos := outStream position.        "backpatch tag offset"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4561
    outStream position:pos1.
1704
1526c7b84920 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  4562
    self writeLong:pos.                     "fill in tag offset"
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  4563
    outStream position:pos.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4564
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4565
('patch tag offset at: ', (pos1 printStringRadix:16) , ' to ',
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4566
                         (pos printStringRadix:16)) printNewline.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4567
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4568
    "output tag data"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4569
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4570
    photometric == #palette ifTrue:[
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4571
        self writeShort:11.  "11 tags"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4572
    ] ifFalse:[
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4573
        self writeShort:10.  "10 tags"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4574
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4575
    self writeTag:256.               "image width"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4576
    self writeTag:257.               "image height"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4577
    self writeTag:258.               "bits per sample"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4578
    self writeTag:259.               "compression"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4579
    self writeTag:262.               "photometric"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4580
    self writeTag:273.               "strip offsets"
159
327da5085900 fixed saving of 24bit RGB images (forgot samplesPerPixel-TAG)
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
  4581
    self writeTag:277.               "samplesPerPixel"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4582
    self writeTag:278.               "rowsPerStrip"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4583
    self writeTag:279.               "strip byte counts"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4584
    self writeTag:284.               "planarconfig"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4585
    photometric == #palette ifTrue:[
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4586
        self writeTag:320            "colorMap"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4587
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4588
    self writeLong:0.                "end of tags mark"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4589
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4590
    "Modified: / 27-08-2017 / 13:36:35 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4591
! !
30
9638bc775850 *** empty log message ***
claus
parents: 28
diff changeset
  4592
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4593
!TIFFReader class methodsFor:'documentation'!
30
9638bc775850 *** empty log message ***
claus
parents: 28
diff changeset
  4594
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4595
version
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  4596
    ^ '$Header$'
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  4597
!
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  4598
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  4599
version_CVS
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  4600
    ^ '$Header$'
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4601
! !
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  4602
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  4603
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4604
TIFFReader initialize!