TIFFReader.st
author Claus Gittinger <cg@exept.de>
Sat, 12 May 2018 14:23:45 +0200
changeset 4088 bbf9b58f99c8
parent 4015 7f7b255c15c2
child 4103 2d8da32cf18b
permissions -rw-r--r--
#FEATURE by cg class: MIMETypes class changed: #initializeFileInfoMappings class: MIMETypes::MIMEType added: #asMimeType #isCHeaderType #isCPPSourceType #isCSourceType
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
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
   900
    self readImageDataUsingDecompressor:
3987
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
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1040
    "Modified: / 29-08-2017 / 23:14:55 / 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
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1043
readImageDataUsingDecompressor:decompressorBlock
3986
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:[
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1061
            ^ self fileFormatError:('only non separate planes are supported with %1 planes' bindWith:nPlanes).
3986
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:[
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1080
                    ^ self fileFormatError:('%1 bits/sample; only 8 or 16 are supported with %2 planes' bindWith:bitsPerSample with:nPlanes).
3986
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:[
3989
a1fa18648a9c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  1126
                "/ swapInt16s := true.
3987
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
    ].
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1130
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1131
    bitsPerSample sum isPowerOfTwo ifFalse:[
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1132
        (#(24 48) includes:bitsPerSample sum) ifFalse:[
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1133
            ^ self fileFormatError:'unsupported bitsPerSample: ' , bitsPerSample printString
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1134
        ].
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1135
    ].
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1136
    
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1137
    fillOrder ~~ #msb ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1138
        (bitsPerSample conform:[:n | n == 8]) ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1139
            ^ self fileFormatError:'unsupported bitsPerSample with lsb fillOrder'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1140
        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1141
        convertFillOrder := true.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1142
    ].
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
    bytesPerRow isNil ifTrue:[ bytesPerRow := bytesPerRowIn ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1145
    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1146
    overAllBytes := bytesPerRow * height.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1147
    data := ByteArray new:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1148
    convert ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1149
        conversionBuffer := ByteArray new:(bytesPerRowIn * rowsPerStrip).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1150
    ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1151
    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1152
    offset := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1153
    stripNr := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1154
    row := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1155
    msb := (byteOrder == #msb).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1156
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1157
    [row <= height] whileTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1158
        self positionToStrip:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1159
        nBytes := stripByteCounts at:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1160
        rowsInThisStrip := stripRowCounts notNil 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1161
                                ifTrue:[stripRowCounts at:stripNr]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1162
                                ifFalse:[rowsPerStrip].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1163
        bytesInThisStrip := bytesPerRowIn * rowsInThisStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1164
        
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1165
        "/ don't assert; the last strip is actually shorter in many images                       
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1166
        "/ compression == 1 ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1167
        "/    self assert:( nBytes == (bytesPerRowIn * rowsInThisStrip) ).
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
        conversionBuffer notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1171
            decompressorBlock notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1172
                inBuffer := ByteArray new:nBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1173
                (inStream nextBytes:nBytes into:inBuffer startingAt:1) == nBytes ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1174
                    self fileFormatError:'short read'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1175
                ]. 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1176
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1177
                nDecompressed := decompressorBlock 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1178
                                    value:inBuffer value:nBytes 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1179
                                    value:conversionBuffer value:1
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1180
                                    value:bytesInThisStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1181
            ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1182
                (nDecompressed := inStream nextBytes:nBytes into:conversionBuffer startingAt:1) == nBytes ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1183
                    self fileFormatError:'short read'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1184
                ]. 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1185
            ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1186
            convertFloats ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1187
                self assert:(nDecompressed \\ 4) == 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1188
                floats := FloatArray new:(nDecompressed // 4).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1189
            ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1190
                convertDoubles ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1191
                    self assert:(nDecompressed \\ 8) == 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1192
                    floats := DoubleArray new:(nDecompressed // 8).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1193
                ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1194
                    convertHalfFloats ifTrue:[  
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1195
                        self assert:(nDecompressed \\ 2) == 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1196
                        floats := HalfFloatArray new:(nDecompressed // 2).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1197
                    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1198
                ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1199
            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1200
            floats replaceBytesWith:conversionBuffer.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1201
            1 to:floats size do:[:i |
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1202
                |dVal byteVal|
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1203
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1204
                dVal := floats at:i.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1205
                "/ rescale from 0..1 to 0..255
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1206
                byteVal := (dVal * 255) asInteger clampBetween:0 and:255.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1207
                data at:offset+i-1 put:byteVal.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1208
            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1209
        ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1210
            decompressorBlock notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1211
                inBuffer := ByteArray new:nBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1212
                (inStream nextBytes:nBytes into:inBuffer startingAt:1) == nBytes ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1213
                    self fileFormatError:'short read'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1214
                ]. 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1215
                nDecompressed := decompressorBlock 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1216
                                    value:inBuffer value:nBytes 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1217
                                    value:data value:offset 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1218
                                    value:bytesInThisStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1219
            ] ifFalse:[    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1220
                (inStream nextBytes:nBytes into:data startingAt:offset) == nBytes ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1221
                    self fileFormatError:'short read'
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
            ]. 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1224
        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1225
        
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1226
        offset := offset + bytesInThisStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1227
        row := row + rowsInThisStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1228
        stripNr := stripNr + 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1229
    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1230
3987
d061c7dccdbe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3986
diff changeset
  1231
    swapInt16s ifTrue:[
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1232
        data swapBytes
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1233
    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1234
    convertFillOrder ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1235
        1 to:data size do:[:i |
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1236
            data at:i put:(data at:i) bitReversed8.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1237
        ].    
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
    (predictor ~~ 1) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1241
        (predictor == 2) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1242
            self class decodeDelta:nPlanes in:data width:width height:height
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1243
        ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1244
            ^ self fileFormatError:'unsupported predictor'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1245
        ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1246
    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1247
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1248
    "Created: / 29-08-2017 / 23:15:10 / cg"
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1249
!
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1250
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1251
readJBIGTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1252
    ^ self fileFormatError:'jbig compression not implemented'.
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1253
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1254
    "Modified: / 3.2.1998 / 18:05:04 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1255
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1256
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1257
readJPEGTiffImageData
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1258
    |nBytes compressedData|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1259
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1260
    stripByteCounts size == 1 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1261
        "/ single strip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1262
        self positionToStrip:1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1263
        nBytes := stripByteCounts at:1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1264
        compressedData := ByteArray uninitializedNew:nBytes.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1265
        (inStream nextBytes:nBytes into:compressedData) == nBytes ifFalse:[ self error:'short read' ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1266
        "/ pngOrJPGImage := JPEGReader fromStream:compressedData readStream.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1267
        "/ self halt.
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
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1270
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1271
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1272
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1273
    ^ self fileFormatError:'jpeg (old) compression not implemented'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1274
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1275
    "Modified: / 27-08-2017 / 15:38:23 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1276
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1277
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1278
readLZWTiffImageData
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1279
    self readImageDataUsingDecompressor:
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1280
        [:inBytes :inCount :outBytes :outOffset :outCount |
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1281
            self class 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1282
                decompressLZWFrom:inBytes count:inCount
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1283
                into:outBytes startingAt:outOffset.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1284
            outCount.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1285
        ].
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
"/    "read LZW compressed tiff data; 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1288
"/     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
  1289
"/     and 2bit or 2+2bit greyscale images.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1290
"/     For 2+2bit greyscale images, the alpha plane is ignored.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1291
"/     (maybe other formats work also - but simply not tested)"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1292
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1293
"/    |bytesPerRow compressedStrip nPlanes overAllBytes
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1294
"/     bytesPerStrip "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1295
"/     nBytes        "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1296
"/     prevSize      "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1297
"/     stripNr       "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1298
"/     offset        "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1299
"/     row           "{ Class: SmallInteger }" |
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
"/    nPlanes := samplesPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1302
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1303
"/    (nPlanes >= 3) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1304
"/        (bitsPerSample conform:[:each | each == 8]) ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1305
"/            ^ self fileFormatError:'only 8/8/8(/8) bits/sample 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
"/        bytesPerRow := width * samplesPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1308
"/    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1309
"/        (nPlanes == 2) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1310
"/            (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1311
"/                ^ self fileFormatError:'only separate planes are 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
"/            'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1314
"/            nPlanes := 1
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1315
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1316
"/        (nPlanes == 1) ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1317
"/            ^ 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
  1318
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1319
"/        bytesPerRow := (width * (bitsPerSample at:1) + 7) // 8.
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
"/    stripRowCounts notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1322
"/        ^ self fileFormatError:'stripRowCounts not supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1323
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1324
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1325
"/    "/ 'TIFFReader: decompressing LZW ...' infoPrintNL.
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
"/    overAllBytes := bytesPerRow * height.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1328
"/    bytesPerRow == width ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1329
"/        data := ByteArray uninitializedNew:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1330
"/    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1331
"/        data := ByteArray new:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1332
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1333
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1334
"/    offset := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1335
"/    stripNr := 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1336
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1337
"/    row := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1338
"/    bytesPerStrip := bytesPerRow * rowsPerStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1339
"/    prevSize := 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1340
"/    [row <= height] whileTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1341
"/        stripNr := stripNr + 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1342
"/        self positionToStrip:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1343
"/        nBytes := stripByteCounts at:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1344
"/        (nBytes > prevSize) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1345
"/            compressedStrip := ByteArray uninitializedNew:nBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1346
"/            prevSize := nBytes
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1347
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1348
"/        (inStream nextBytes:nBytes into:compressedStrip) == nBytes ifFalse:[ self fileFormatError:'short file' ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1349
"/        self class 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1350
"/            decompressLZWFrom:compressedStrip count:nBytes
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1351
"/            into:data startingAt:offset.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1352
"/        offset := offset + bytesPerStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1353
"/        row := row + rowsPerStrip
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1354
"/    ].
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
"/    predictor ~~ 1 ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1357
"/        (predictor == 2) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1358
"/            self class decodeDelta:nPlanes in:data width:width height:height
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1359
"/        ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1360
"/            self fileFormatError:'unsupported predictor'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1361
"/        ]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1362
"/    ]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1363
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1364
    "Modified: / 29-08-2017 / 23:14:59 / 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
readNeXTJPEGTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1368
    ^ self fileFormatError:'next jpeg 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:45 / 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
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1373
readNeXTRLE2TiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1374
    ^ self fileFormatError:'next 2bit rle compression not implemented'.
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  1375
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1376
    "Modified: / 3.2.1998 / 18:10:54 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1377
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1378
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1379
readNewJPEGTiffImageData
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1380
    ^ self fileFormatError:'new jpeg compression not implemented'.
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1381
!
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1382
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1383
readPackbitsTiffImageData
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1384
    self readImageDataUsingDecompressor:
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1385
        [:inBytes :inCount :outBytes :outOffset :outCount |
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1386
            self class decompressTiffPackBitsFrom:inBytes to:outBytes at:outOffset count:outCount.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1387
        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1388
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1389
"/    "this has only been tested with monochrome images"
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
"/    |bytesPerRow bitsPerRow nPlanes 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1392
"/     stripNr       "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1393
"/     offset        "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1394
"/     row           "{ Class: SmallInteger }" 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1395
"/     nBytes        "{ Class: SmallInteger }" bitsPerPixel overAllBytes buffer|
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 := samplesPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1398
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1399
"/    "only support 1-sample/pixel,
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1400
"/     with alpha - if separate planes,
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1401
"/     or rgb - if non separate planes and no alpha"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1402
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1403
"/    (nPlanes == 2) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1404
"/        (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1405
"/            ^ self fileFormatError:'with alpha, only separate planes supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1406
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1407
"/        'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1408
"/        nPlanes := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1409
"/        bitsPerPixel := bitsPerSample at:1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1410
"/        bitsPerSample := Array with:bitsPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1411
"/        samplesPerPixel := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1412
"/    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1413
"/        (nPlanes == 3) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1414
"/            (planarConfiguration ~~ PLANARCONFIG_CONTIG) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1415
"/                ^ self fileFormatError:'only non separate planes supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1416
"/            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1417
"/            bitsPerSample ~= #(8 8 8) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1418
"/                ^ self fileFormatError:'only 8/8/8 rgb images supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1419
"/            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1420
"/            bitsPerPixel := 24
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1421
"/        ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1422
"/            (nPlanes ~~ 1) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1423
"/                ^ self fileFormatError:('format (nplanes == %1) not supported' bindWith:nPlanes).
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
"/            bitsPerPixel := bitsPerSample at:1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1426
"/        ]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1427
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1428
"/    stripRowCounts notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1429
"/        ^ self fileFormatError:'stripRowCounts not supported'.
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
"/    bitsPerRow := width * bitsPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1433
"/    bytesPerRow := bitsPerRow // 8.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1434
"/    ((bitsPerRow \\ 8) ~~ 0) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1435
"/        bytesPerRow := bytesPerRow + 1
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1436
"/    ].
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
"/    overAllBytes := bytesPerRow * height.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1439
"/    bytesPerRow == width ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1440
"/        data := ByteArray uninitializedNew:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1441
"/    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1442
"/        data := ByteArray new:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1443
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1444
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1445
"/    offset := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1446
"/    stripNr := 1.
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
"/    buffer := nil.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1449
"/    row := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1450
"/    [row <= height] whileTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1451
"/        nBytes := stripByteCounts at:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1452
"/        self positionToStrip:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1453
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1454
"/        nBytes > buffer size ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1455
"/            "/ realloc
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1456
"/            buffer := ByteArray uninitializedNew:nBytes.
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
"/        (inStream nextBytes:nBytes into:buffer) == nBytes ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1459
"/            self fileFormatError:'short file read'
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1460
"/        ].    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1461
"/        self class decompressTiffPackBitsFrom:buffer to:data at:offset count:(bytesPerRow * rowsPerStrip).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1462
"/        "/ nDecompressedBytes := self class decompressPackBits:nBytes from:buffer to:data startingAt:offset.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1463
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1464
"/        offset := offset + (bytesPerRow * rowsPerStrip).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1465
"/        row := row + rowsPerStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1466
"/        stripNr := stripNr + 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1467
"/    ]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1468
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1469
    "Modified: / 29-08-2017 / 23:15:03 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1470
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1471
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1472
readPixarFilmTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1473
    ^ self fileFormatError:'pixar film compression not implemented'.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
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:45 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1476
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1477
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1478
readPixarLogTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1479
    ^ self fileFormatError:'pixar log compression not implemented'.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  1480
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1481
    "Modified: / 3.2.1998 / 18:11:53 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1482
!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1483
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1484
readSGI24TiffImageData
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1485
    ^ self fileFormatError:'SGI 24-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:25 / 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
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1490
readSGI32TiffImageData
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1491
    ^ self fileFormatError:'SGI 32-bit Log Luminance encoding not implemented' .
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1492
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1493
    "Created: / 25-08-2017 / 11:17:21 / cg"
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1494
!
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1495
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1496
readThunderScanTiffImageData
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1497
    |bytesPerRow compressedStrip nPlanes overAllBytes
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1498
     bytesPerStrip "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1499
     nBytes        "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1500
     prevSize      "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1501
     stripNr       "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1502
     offset        "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1503
     row           "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1504
     pixelIndex
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1505
     i even gen highNibble lastPixel d1 d2 d3|
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
    nPlanes := samplesPerPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1508
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1509
    (nPlanes == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1510
        (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1511
            ^ self fileFormatError:'only separate planes are supported'.
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
        'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1514
        nPlanes := 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1515
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1516
    (nPlanes == 1) ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1517
        ^ self fileFormatError:'unsupported nPlanes: ' , nPlanes printString.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1518
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1519
    (bitsPerSample at:1) == 4 ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1520
        ^ 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
  1521
    ].    
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1522
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1523
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1524
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1525
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1526
    bytesPerRow := (width * (bitsPerSample at:1) + 7) // 8.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1527
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1528
    "/ 'TIFFReader: decompressing ThunderScan ...' infoPrintNL.
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
    overAllBytes := bytesPerRow * height.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1531
    bytesPerRow == width ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1532
        data := ByteArray uninitializedNew:overAllBytes.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1533
    ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1534
        data := ByteArray new:overAllBytes.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1535
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1536
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1537
    offset := 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1538
    stripNr := 0.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1539
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1540
    gen := [:pixel | 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1541
                even ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1542
                    highNibble := pixel. 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1543
                    even := false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1544
                ] ifFalse:[    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1545
                    data at:pixelIndex put:((highNibble bitShift:4) bitOr:pixel).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1546
                    pixelIndex := pixelIndex + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1547
                    even := true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1548
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1549
            ].    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1550
    even := true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1551
    lastPixel := 0.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1552
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1553
    row := 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1554
    bytesPerStrip := bytesPerRow * rowsPerStrip.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1555
    prevSize := 0.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1556
    [row <= height] whileTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1557
        stripNr := stripNr + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1558
        self positionToStrip:stripNr.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1559
        nBytes := stripByteCounts at:stripNr.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1560
        (nBytes > prevSize) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1561
            compressedStrip := ByteArray uninitializedNew:nBytes.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1562
            prevSize := nBytes
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
        (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
  1565
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1566
        "/ RLE decode... (see http://fileformats.archiveteam.org/wiki/ThunderScan_compression)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1567
        i := 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1568
        pixelIndex := offset.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1569
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1570
        [i <= nBytes] whileTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1571
            |code|
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1572
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1573
            code := compressedStrip at:i.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1574
            i := i + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1575
            code >= 2r11000000 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1576
                "/ a single pixel
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1577
                lastPixel := code bitAnd:2r00111111.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1578
                self assert:(lastPixel <= 2r1111).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1579
                
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1580
                gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1581
            ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1582
                code >= 2r10000000 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1583
                    "/ three bit deltas (2 pixels)
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
                    d1 := (code rightShift:3) bitAnd:2r111.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1586
                    d2 := code bitAnd:2r111.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1587
                    d1 ~~ 4 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1588
                        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
  1589
                        gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1590
                    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1591
                    d2 ~~ 4 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1592
                        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
  1593
                        gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1594
                    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1595
                ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1596
                    code >= 2r01000000 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1597
                        "/ two bit deltas (3 pixels)    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1598
                        d1 := (code rightShift:4) bitAnd:2r11.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1599
                        d2 := (code rightShift:2) bitAnd:2r11.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1600
                        d3 := code bitAnd:2r11.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1601
                        d1 ~~ 2 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1602
                            lastPixel := lastPixel + (#(0 1 0 -1) at:d1+1).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1603
                            gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1604
                        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1605
                        d2 ~~ 2 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1606
                            lastPixel := lastPixel + (#(0 1 0 -1) at:d2+1).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1607
                            gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1608
                        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1609
                        d3 ~~ 2 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1610
                            lastPixel := lastPixel + (#(0 1 0 -1) at:d3+1).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1611
                            gen value:lastPixel.
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
                    ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1614
                        code timesRepeat:[ gen value:lastPixel ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1615
                    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1616
                ].
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
        "/ self assert:(pixelIndex == (offset + bytesPerStrip)).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1620
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1621
        offset := offset + bytesPerStrip.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1622
        row := row + rowsPerStrip
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1623
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1624
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1625
    (predictor ~~ 1) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1626
        ^ self fileFormatError:('unsupported predictor: %1' bindWith:predictor).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1627
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1628
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1629
    "Modified: / 27-08-2017 / 15:38:47 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1630
!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1631
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1632
readTiffImageData
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1633
    (compression == COMPRESSION_NONE " 1 " ) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1634
        self readUncompressedTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1635
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1636
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1637
    (compression == COMPRESSION_CCITTRLE " 2 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1638
        self readCCITT3RLETiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1639
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1640
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1641
    (compression == COMPRESSION_CCITTFAX3 " 3 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1642
        self readCCITTGroup3TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1643
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1644
    ]. 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1645
    (compression == COMPRESSION_CCITTFAX4 " 4 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1646
        self readCCITTGroup4TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1647
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1648
    ]. 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1649
    (compression == COMPRESSION_LZW " 5 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1650
        self readLZWTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1651
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1652
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1653
    (compression == COMPRESSION_OJPEG " 6 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1654
        self readJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1655
        ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1656
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1657
    (compression == COMPRESSION_JPEG " 7 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1658
        self readNewJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1659
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1660
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1661
    (compression == COMPRESSION_ADOBE_DEFLATE " 8 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1662
        self readAdobeDeflateTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1663
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1664
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1665
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1666
    (compression == COMPRESSION_NEXT " 32766 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1667
        self readNeXTRLE2TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1668
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1669
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1670
    (compression == COMPRESSION_CCITTRLEW " 32771 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1671
        self readCCITTRLEWTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1672
        ^ self
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1673
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1674
    (compression == COMPRESSION_PACKBITS " 32773 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1675
        self readPackbitsTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1676
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1677
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1678
    (compression == COMPRESSION_THUNDERSCAN " 32809 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1679
        self readThunderScanTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1680
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1681
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1682
    (compression == COMPRESSION_PIXARFILM " 32908 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1683
        self readPixarFilmTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1684
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1685
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1686
    (compression == COMPRESSION_PIXARLOG " 32909 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1687
        self readPixarLogTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1688
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1689
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1690
    (compression == COMPRESSION_DEFLATE " 32946 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1691
        self readDeflateTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1692
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1693
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1694
    (compression == COMPRESSION_DCS " 32947 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1695
        self readDCSTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1696
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1697
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1698
    (compression == COMPRESSION_NEXT_JPEG " 32865 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1699
        self readNeXTJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1700
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1701
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1702
    (compression == COMPRESSION_JBIG " 34661 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1703
        self readJBIGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1704
        ^ self
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1705
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1706
    (compression == COMPRESSION_SGILOG " 34676 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1707
        self readSGI32TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1708
        ^ self
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1709
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1710
    (compression == COMPRESSION_SGILOG24 " 34677 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1711
        self readSGI24TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1712
        ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1713
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1714
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1715
    self fileFormatError:('compression type ' , compression printString , ' not known').
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1716
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1717
    "Created: / 11-04-1997 / 00:19:44 / cg"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1718
    "Modified: / 26-08-2017 / 21:46:56 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1719
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1720
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1721
readTiledJPEGTiffImageData
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1722
    ^ self fileFormatError:'tiled jpeg (old) compression not implemented'.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1723
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1724
    "Created: / 25-08-2017 / 16:27:28 / cg"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1725
    "Modified: / 26-08-2017 / 13:39:04 / cg"
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1726
!
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1727
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1728
readTiledLZWTiffImageData
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1729
    ^ self fileFormatError:'tiled LZW data not implemented' .
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1730
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1731
    "Created: / 25-08-2017 / 01:05:13 / cg"
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1732
!
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1733
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1734
readTiledNewJPEGTiffImageData
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1735
    ^ self fileFormatError:'tiled new jpeg compression not implemented'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1736
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1737
    "Created: / 26-08-2017 / 13:37:51 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1738
!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1739
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1740
readTiledTiffImageData
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1741
    (compression == COMPRESSION_NONE " 1 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1742
        self readTiledUncompressedTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1743
        ^ self
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1744
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1745
    (compression == COMPRESSION_LZW " 5 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1746
        self readTiledLZWTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1747
        ^ self
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1748
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1749
    (compression == COMPRESSION_OJPEG " 6 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1750
        self readTiledJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1751
        ^ self
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1752
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1753
    (compression == COMPRESSION_JPEG " 7 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1754
        self readTiledNewJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1755
        ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1756
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1757
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1758
    self fileFormatError:('tiled compression type ' , compression printString , ' not supported').
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1759
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1760
    "Created: / 25-08-2017 / 00:19:14 / cg"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1761
    "Modified: / 26-08-2017 / 13:39:15 / cg"
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1762
!
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1763
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1764
readTiledUncompressedTiffImageData
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1765
    |bytesPerRow     "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1766
     bitsPerRow      "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1767
     bytesPerTileRow "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1768
     bitsPerTileRow  "{ Class: SmallInteger }" 
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1769
     nPlanes 
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1770
     tileNr          "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1771
     "/ offset          "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1772
     "/ row             "{ Class: SmallInteger }" 
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1773
     nBytes          "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1774
     bitsPerPixel    "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1775
     overAllBytes    "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1776
     where           "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1777
     x               "{ Class: SmallInteger }"       
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1778
     y               "{ Class: SmallInteger }" 
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1779
     imageRowOffset  "{ Class: SmallInteger }" 
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1780
     imageOffset     "{ Class: SmallInteger }" 
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1781
     tileOffset      "{ Class: SmallInteger }"   
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1782
     dataOffset      "{ Class: SmallInteger }"   
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1783
     tilePos tile tH tW tb|
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1784
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1785
    nPlanes := samplesPerPixel.
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
    "/ not all formats are supported here,
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1788
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1789
    (nPlanes == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1790
        (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1791
            ^ self fileFormatError:'with alpha, only separate planes supported'.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1792
        ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1793
        'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1794
        nPlanes := 1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1795
        bitsPerPixel := bitsPerSample at:1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1796
        bitsPerSample := Array with:bitsPerPixel.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1797
        samplesPerPixel := 1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1798
    ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1799
        (nPlanes == 4) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1800
            (planarConfiguration ~~ PLANARCONFIG_CONTIG) ifTrue:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1801
                ^ self fileFormatError:'only non separate planes supported'.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1802
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1803
            bitsPerSample ~= #(8 8 8 8) ifTrue:[
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1804
                ^ 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
  1805
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1806
            bitsPerPixel := 32.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1807
        ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1808
            (nPlanes == 3) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1809
                (planarConfiguration ~~ PLANARCONFIG_CONTIG) ifTrue:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1810
                    ^ self fileFormatError:'only non separate planes supported'.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1811
                ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1812
                bitsPerSample ~= #(8 8 8) ifTrue:[
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1813
                    ^ 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
  1814
                ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1815
                bitsPerPixel := 24
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1816
            ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1817
                (nPlanes ~~ 1) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1818
                    ^ self fileFormatError:('unsupported format: nplanes=' , nPlanes printString).
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1819
                ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1820
                bitsPerPixel := bitsPerSample at:1.
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
        ]
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1823
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1824
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1825
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1826
    ].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1827
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1828
    bitsPerRow := width * bitsPerPixel.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1829
    bytesPerRow := (bitsPerRow + 7) // 8.
3976
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
    bitsPerTileRow := tileWidth * bitsPerPixel.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1832
    bytesPerTileRow := (bitsPerTileRow + 7) // 8.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1833
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1834
    overAllBytes := bytesPerRow * height.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1835
    data := ByteArray new:overAllBytes.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1836
    
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1837
    tileNr := 1.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1838
    where := -1.
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1839
    y := 0.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1840
    imageRowOffset := 1.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1841
    [ y < height ] whileTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1842
        tH := tileLength.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1843
        (y+tileLength) > height ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1844
            tH := height - y.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1845
        ].    
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1846
        x := 0.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1847
        imageOffset := imageRowOffset.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1848
        [ x < width ] whileTrue:[
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1849
            nBytes := tileByteCounts at:tileNr.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1850
            tilePos := tileOffsets at:tileNr.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1851
            tileNr := tileNr + 1.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1852
            
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1853
            where ~~ tilePos ifTrue:[
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1854
                inStream position:tilePos.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1855
                where := tilePos.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1856
            ].
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1857
            tile := ByteArray new:nBytes.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1858
            inStream nextBytes:nBytes into:tile startingAt:1 blockSize:4096.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1859
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1860
            "/ copy the tile.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1861
            tileOffset := 1.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1862
            dataOffset := imageOffset. 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1863
            tW := tileWidth.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1864
            tb := bytesPerTileRow.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1865
            (x+tileWidth) > width ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1866
                tW := width-x.
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1867
                tb := ((bitsPerPixel * tW) + 7) // 8.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1868
            ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1869
            1 to:tH do:[:yT |
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1870
                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
  1871
                dataOffset := dataOffset + bytesPerRow.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1872
                tileOffset := tileOffset + bytesPerTileRow.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1873
            ].
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1874
            
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1875
            "/ offset := offset + nBytes.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1876
            "/ row := row + rowsPerStrip.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1877
            where := where + nBytes.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1878
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1879
            x := x + tW.
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1880
            imageOffset := imageOffset + bytesPerTileRow.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1881
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1882
        y := y + tH.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1883
        imageRowOffset := imageRowOffset + (bytesPerRow*tH).
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1884
    ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1885
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1886
    "Created: / 25-08-2017 / 00:22:31 / cg"
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1887
    "Modified: / 28-08-2017 / 01:14:00 / cg"
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1888
!
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1889
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1890
readUncompressedTiffImageData
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1891
    self readImageDataUsingDecompressor:nil
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1892
    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1893
"/    |bytesPerRow   "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1894
"/     bitsPerRow    "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1895
"/     nPlanes 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1896
"/     stripNr       "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1897
"/     offset        "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1898
"/     row           "{ Class: SmallInteger }" 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1899
"/     nBytes        "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1900
"/     bitsPerPixel 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1901
"/     overAllBytes  "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1902
"/     where         "{ Class: SmallInteger }"
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1903
"/     stripPos 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1904
"/     convertFloats convertDoubles convertHalfFloats|
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1905
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1906
"/    nPlanes := samplesPerPixel.
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
"/    "/ not all formats are supported here,
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1909
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1910
"/    (nPlanes == 2) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1911
"/        (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1912
"/            ^ self fileFormatError:'with alpha, only separate planes supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1913
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1914
"/        'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1915
"/        nPlanes := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1916
"/        bitsPerPixel := bitsPerSample at:1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1917
"/        bitsPerSample := Array with:bitsPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1918
"/        samplesPerPixel := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1919
"/    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1920
"/        (nPlanes == 4) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1921
"/            (planarConfiguration ~~ PLANARCONFIG_CONTIG) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1922
"/                ^ self fileFormatError:'only non separate planes supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1923
"/            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1924
"/            bitsPerSample ~= #(8 8 8 8) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1925
"/                bitsPerSample ~= #(16 16 16 16) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1926
"/                    ^ 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
  1927
"/                ].
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
"/            bitsPerPixel := bitsPerSample sum.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1930
"/        ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1931
"/            (nPlanes == 3) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1932
"/                (planarConfiguration ~~ 1) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1933
"/                    ^ self fileFormatError:'only non separate planes supported'.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1934
"/                ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1935
"/                bitsPerSample ~= #(8 8 8) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1936
"/                    bitsPerSample ~= #(16 16 16) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1937
"/                        ^ 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
  1938
"/                    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1939
"/                ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1940
"/                bitsPerPixel := bitsPerSample sum.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1941
"/            ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1942
"/                (nPlanes ~~ 1) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1943
"/                    ^ self fileFormatError:('unsupported format: nplanes=' , nPlanes printString).
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1944
"/                ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1945
"/                bitsPerPixel := bitsPerSample at:1.
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
"/        ]
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1948
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1949
"/    stripRowCounts notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1950
"/        ^ self fileFormatError:'stripRowCounts not supported'.
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
"/    bitsPerRow := width * bitsPerPixel.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1954
"/    bytesPerRow := bitsPerRow // 8.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1955
"/    ((bitsPerRow \\ 8) ~~ 0) ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1956
"/        bytesPerRow := bytesPerRow + 1
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1957
"/    ].
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
"/    overAllBytes := bytesPerRow * height.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1960
"/    bytesPerRow == width ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1961
"/        data := ByteArray uninitializedNew:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1962
"/    ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1963
"/        data := ByteArray new:overAllBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1964
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1965
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1966
"/    offset := 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1967
"/    stripNr := 0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1968
"/    where := -1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1969
"/    row := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1970
"/    [row <= height] whileTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1971
"/        stripNr := stripNr + 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1972
"/        nBytes := stripByteCounts at:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1973
"/        stripPos := stripOffsets at:stripNr.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1974
"/        where ~~ stripPos ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1975
"/            inStream position:stripPos.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1976
"/            where := stripPos.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1977
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1978
"/        
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1979
"/        offset + nBytes > overAllBytes ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1980
"/            nBytes := overAllBytes - offset.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1981
"/        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1982
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1983
"/        (inStream nextBytes:nBytes into:data startingAt:offset+1) == nBytes ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1984
"/            ^ self fileFormatError:'short read'.
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
"/
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1987
"/        offset := offset + nBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1988
"/        row := row + rowsPerStrip.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1989
"/        where := where + nBytes.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1990
"/    ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  1991
4000
d39d58494281 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1992
    "Modified: / 29-08-2017 / 23:15:07 / cg"
440
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  1993
! !
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  1994
1762
55cf76514c8c method category rename
Claus Gittinger <cg@exept.de>
parents: 1759
diff changeset
  1995
!TIFFReader methodsFor:'private-reading'!
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1996
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1997
decodePhotoshopImageResourceBlock:bytes
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1998
    "8BIM is the signature for Photoshop Image Resource Block (IRB). 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1999
     See http://www.adobe.com/devnet-apps/photoshop/fileformatashtml/#50577409_38034.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2000
     
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2001
     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
  2002
     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
  2003
     The structure of the IRB is as follows:
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2004
     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
  2005
     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
  2006
     For example: 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2007
        0x040c for thumbnail; 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2008
        0x041a for slices; 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2009
        0x0408 for grid information; 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2010
        0x040f for ICC Profile etc.
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
     After the identifier is a variable length string for name. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2013
     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
  2014
     After the first byte comes the string itself. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2015
     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
  2016
     Otherwise, pad one more byte after the string.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2017
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2018
     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
  2019
     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
  2020
     This finishes a whole 8BIM.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2021
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2022
     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
  2023
     How to interpret the data depends on the unique 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
     Now let's see how the IRBs are include in images. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2026
     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
  2027
     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
  2028
     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
  2029
     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
  2030
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2031
     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
  2032
     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
  2033
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2034
    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
  2035
    0x03E9 Macintosh print manager print info record
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2036
    0x03EA Macintosh page format information. No longer read by Photoshop. (Obsolete)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2037
    0x03EB Obsolete--Photoshop 2.0 only ) Indexed color table
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2038
    0x03ED ResolutionInfo structure. See Appendix A in Photoshop API Guide.pdf.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2039
    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
  2040
    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
  2041
    0x03F0 The caption as a Pascal string.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2042
    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
  2043
    0x03F2 Background color. See See Color structure.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2044
    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
  2045
    0x03F4 Grayscale and multichannel halftoning information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2046
    0x03F5 Color halftoning information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2047
    0x03F6 Duotone halftoning information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2048
    0x03F7 Grayscale and multichannel transfer function
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2049
    0x03F8 Color transfer functions
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2050
    0x03F9 Duotone transfer functions
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2051
    0x03FA Duotone image information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2052
    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
  2053
    0x03FC (Obsolete)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2054
    0x03FD EPS options
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2055
    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
  2056
    0x03FF (Obsolete)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2057
    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
  2058
    0x0401 Working path (not saved). See See Path resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2059
    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
  2060
    0x0403 (Obsolete)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2061
    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
  2062
    0x0405 Image mode for raw format files
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2063
    0x0406 JPEG quality. Private.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2064
    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
  2065
    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
  2066
    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
  2067
    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
  2068
    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
  2069
    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
  2070
    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
  2071
    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
  2072
    0x0410 (Photoshop 5.0) Watermark. One byte.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2073
    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
  2074
    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
  2075
    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
  2076
    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
  2077
    0x0415 (Photoshop 5.0) Unicode Alpha Names. Unicode string
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2078
    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
  2079
    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
  2080
    0x0419 (Photoshop 6.0) Global Altitude. 4 byte entry for altitude
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2081
    0x041A (Photoshop 6.0) Slices. See See Slices resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2082
    0x041B (Photoshop 6.0) Workflow URL. Unicode string
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2083
    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
  2084
    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
  2085
    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
  2086
    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
  2087
    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
  2088
    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
  2089
    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
  2090
    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
  2091
    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
  2092
    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
  2093
    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
  2094
    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
  2095
    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
  2096
    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
  2097
    0x042E (Photoshop CS2) HDR Toning information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2098
    0x042F (Photoshop CS2) Print info
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2099
    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
  2100
    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
  2101
    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
  2102
    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
  2103
    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
  2104
    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
  2105
    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
  2106
    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
  2107
    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
  2108
    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
  2109
    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
  2110
    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
  2111
    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
  2112
    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
  2113
    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
  2114
    0x07D0-0x0BB6 Path Information (saved paths). See See Path resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2115
    0x0BB7 Name of clipping path. See See Path resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2116
    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
  2117
    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
  2118
    0x1B58 Image Ready variables. XML representation of variables definition
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2119
    0x1B59 Image Ready data sets
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2120
    0x1B5A Image Ready default selected state
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2121
    0x1B5B Image Ready 7 rollover expanded state
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2122
    0x1B5C Image Ready rollover expanded state
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2123
    0x1B5D Image Ready save layer settings
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2124
    0x1B5E Image Ready version
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2125
    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
  2126
    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
  2127
    "
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2128
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2129
    |s id name len resource record|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2130
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2131
    record := OrderedCollection new.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2132
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2133
    s := bytes readStream.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2134
    [s atEnd] whileFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2135
        (s next:4) asString = '8BIM' ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2136
            id := s nextUnsignedInt16MSB.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2137
            name := s upTo:0.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2138
            name size odd ifFalse:[ s next ]. "/ padding
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2139
            len := s nextUnsignedInt32MSB.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2140
            resource := s next:len.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2141
            Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2142
                Transcript showCR:('      8BIM-%1: %2' bindWith:(id hexPrintString:4) with:resource).
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
            record add:(Dictionary new
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2145
                            at:#id put:id;
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2146
                            at:#name put:name;
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2147
                            at:#resource put:resource;
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2148
                            yourself).                    
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
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2151
    metaData at:#'PhotoshopIRB' put:record.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2152
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2153
    "Created: / 27-08-2017 / 17:12:25 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2154
    "Modified: / 27-08-2017 / 18:14:56 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2155
!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2156
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2157
decodeTiffTag:tagType numberType:numberType length:length
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2158
    |offset value valueArray 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2159
     val scaleFactor rV gV bV
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2160
     n  "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2161
     i2 "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2162
     i3 "{ Class: SmallInteger }" |
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2163
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2164
    Verbose == true ifTrue:[ Logger info:'tiffTag: %1' with:tagType ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2165
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2166
    (numberType == 3 "TIFF_SHORT") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2167
        "16 bit ushort"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2168
        valueArray := self readShorts:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2169
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2170
    ] ifFalse:[(numberType == 4 "TIFF_LONG") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2171
        "32 bit uinteger"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2172
        valueArray := self readLongs:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2173
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2174
    ] ifFalse:[(numberType == 2 "TIFF_ASCII") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2175
        "ascii characters"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2176
        value := self readChars:length
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2177
    ] ifFalse:[(numberType == 5 "TIFF_RATIONAL") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2178
        "64 (32+32) bit ufraction"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2179
        valueArray := self readFracts:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2180
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2181
    ] ifFalse:[(numberType == 1 "TIFF_BYTE") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2182
        "8bit uinteger"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2183
        value := self readBytes:length signed:false
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2184
    ] ifFalse:[(numberType == 6 "TIFF_SBYTE") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2185
        "TIFF6: 8bit signed integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2186
        value := self readBytes:length  signed:true
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2187
    ] ifFalse:[(numberType == 8 "TIFF_SSHORT") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2188
        "TIFF6: 16bit signed integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2189
        valueArray := self readShorts:length signed:true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2190
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2191
    ] ifFalse:[(numberType == 9 "TIFF_SLONG") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2192
        "TIFF6: 32bit signed integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2193
        valueArray := self readLongs:length signed:true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2194
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2195
    ] ifFalse:[(numberType == 10 "TIFF_SRATIONAL") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2196
        "TIFF6: 64 (32+32) bit signed fraction"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2197
        valueArray := self readFracts:length signed:true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2198
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2199
    ] ifFalse:[(numberType == 11 "TIFF_FLOAT") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2200
        "TIFF6: 32 bit IEEE float"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2201
        valueArray := self readFloats:length.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2202
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2203
    ] ifFalse:[(numberType == 12 "TIFF_DOUBLE") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2204
        "TIFF6: 64 bit IEEE double"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2205
        valueArray := self readDoubles:length.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2206
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2207
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2208
    ] ifFalse:[(numberType == 7 "TIFF_UNDEFINED") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2209
        "8bit anything"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2210
        value := self readBytes:length signed:false
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2211
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2212
    "/ the following are preps for the propsed bigTiff format    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2213
    ] ifFalse:[(numberType == 16 "TIFF_LONG8") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2214
        "BIGTIFF: 8-byte unsigned integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2215
        valueArray := self readLong8s:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2216
        value := valueArray at:1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2217
    ] ifFalse:[(numberType == 17 "TIFF_SLONG8") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2218
        "BIGTIFF: 8-byte signed integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2219
        valueArray := self readLong8s:length signed:true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2220
        value := valueArray at:1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2221
    ] ifFalse:[(numberType == 18 "TIFF_IFD8") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2222
        "BIGTIFF: 8-byte unsigned IFD offset"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2223
        valueArray := self readLong8s:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2224
        value := valueArray at:1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2225
    ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2226
        isBigTiff ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2227
            offset := (inStream nextInt64MSB:(byteOrder ~~ #lsb))
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2228
        ] ifFalse:[    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2229
            offset := (inStream nextInt32MSB:(byteOrder ~~ #lsb))
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2230
        ]
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2231
    ]]]]]]]]]]]]]]].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2232
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2233
    (tagType between:200 and:299) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2234
        (tagType == 254) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2235
            "/ New SubfileType
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2236
            "/      REDUCEDIMAGE    -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2237
            "/      PAGE            -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2238
            "/      MASK            -> 4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2239
            "newSubFileType := value."
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
            "/ 'newSubfiletype ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2242
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2243
                Logger info:'      newSubfiletype: %1' with:value
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2244
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2245
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2246
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2247
        (tagType == 255) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2248
            "/ Old SubfileType
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2249
            "/      IMAGE           -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2250
            "/      REDUCEDIMAGE    -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2251
            "/      PAGE            -> 3
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2252
            subFileType := value.
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
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2255
                Logger info:'      oldSubfiletype: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2256
            ].
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
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2259
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2260
        (tagType == 256) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2261
            "ImageWidth"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2262
            width := value.
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
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2265
                Logger info:'      width: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2266
            ].
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
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2269
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2270
        (tagType == 257) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2271
            "ImageHeight"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2272
            height := value.
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
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2275
                Logger info:'      height: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2276
            ].
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
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2279
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2280
        (tagType == 258) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2281
            "bitspersample"  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2282
             bitsPerSample := valueArray.
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
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2285
                Logger info:'      bitspersample: %1' with:valueArray 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2286
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2287
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2288
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2289
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2290
        (tagType == 259) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2291
            "/ compression
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2292
            "/      NONE            -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2293
            "/      CCITTRLE        -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2294
            "/      CCITTFAX3       -> 3
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2295
            "/      CCITTFAX4       -> 4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2296
            "/      LZW             -> 5
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2297
            "/      OJPEG           -> 6 (old style jpeg)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2298
            "/      JPEG            -> 7 (new style jpeg)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2299
            "/      ADOBE_DEFLATE   -> 8
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2300
            "/      JBIG            -> 9 (ITU-T T85)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2301
            "/      JBIG            -> 10 (ITU-T T43)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2302
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2303
            "/      NEXT            -> 32766 (NeXT 2-bit encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2304
            "/      CCITTRLEW       -> 32771
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2305
            "/      PACKBITS        -> 32773
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2306
            "/      THUNDERSCAN     -> 32809 (ThunderScan 4-bit encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2307
            "/      IT8CTPAD        -> 32895  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2308
            "/      IT8LW           -> 32896  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2309
            "/      IT8MP           -> 32897  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2310
            "/      IT8BL           -> 32898  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2311
            "/      PIXARFILM       -> 32908
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2312
            "/      PIXARLOG        -> 32909 (Pixar companded 11-bit ZIP encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2313
            "/      DEFLATE         -> 32946 (PKZIP-style Deflate encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2314
            "/      DCS             -> 32947 (kodac)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2315
            "/      JBIG            -> 34661
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2316
            "/      SGI32           -> 34676 (SGI 32-bit Log Luminance encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2317
            "/      SGI24           -> 34677 (SGI 24-bit Log Luminance encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2318
            "/      JPEG2000        -> 34712 JPEG2000
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2319
            "/      NIKON_NEF       -> 34713 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2320
            "/      JBIG2           -> 34715 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2321
            compression := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2322
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2323
            Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2324
                |s|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2325
                s := (Dictionary withKeyValuePairs:
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2326
                        #( (1 uncompressed)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2327
                            (2 CCITTRLE)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2328
                            (3 CCITTFAX3)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2329
                            (4 CCITTFAX4)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2330
                            (5 LZW)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2331
                            (6 OJPEG)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2332
                            (7 JPEG)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2333
                            (8 ADOBE_DEFLATE)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2334
                            (9 JBIG_T85)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2335
                            (10 JBIG_T43)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2336
                            (32766 NEXT)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2337
                            (32771 CCITTRLEW)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2338
                            (32773 PACKBITS)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2339
                            (32809 THUNDERSCAN)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2340
                            (32895 IT8CTPAD)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2341
                            (32896 IT8LW)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2342
                            (32897 IT8MP)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2343
                            (32898 IT8BL)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2344
                            (32908 PIXARFILM)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2345
                            (32909 PIXARLOG)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2346
                            (32946 DEFLATE)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2347
                            (32947 DCS)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2348
                            (34661 JBIG)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2349
                            (34676 SGI32)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2350
                            (34677 SGI24)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2351
                            (34712 JPEG2000)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2352
                            (34713 NIKON_NEF)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2353
                            (34715 JBIG2) 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2354
                        )) at:value ifAbsent:'???'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2355
                Logger info:'      compression: %1 (=%2)' with:value with:s.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2356
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2357
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2358
        ].
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2359
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2360
        (tagType == 262) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2361
            "photometric"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2362
            |p|
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2363
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2364
            (value between:0 and:10) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2365
                p := 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2366
                    #(
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2367
                        whiteIs0            "/  0 - grayscale or monochrome; faxes
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2368
                        blackIs0            "/  1 - grayscale or monochrome; faxes
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2369
                        rgb                 "/  2
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2370
                        palette             "/  3
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2371
                        transparencyMask    "/  4
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2372
                        cmyk                "/  5 - color separations
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2373
                        YCbCr               "/  6 - CCIR 601
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2374
                        nil                 "/  7
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2375
                        CIElab              "/  8 - 1976 CIE L*a*b*
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2376
                        ICClab              "/  9 - ICC L*a*b*
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2377
                        ITUlab              "/ 10 - see ITO-T- Rec T42 (RFC 2301)
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2378
                    ) at:(value + 1)    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2379
            ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2380
                (value == 32803) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2381
                    p := #ColorFilterArray    "/ camera rw format
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 == 32844) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2384
                    p := #PixarLogL   
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
                (value == 32845) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2387
                    p := #PixarLogLuv    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2388
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2389
                (value == 34892) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2390
                    p := #LinearRaw           "/ camera rw format
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2391
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2392
            ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2393
            photometric := p.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2394
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2395
                Logger info:'      photometric: %1 (=%2)' with:value with:photometric
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2396
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2397
            ^ self
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
        (tagType == 263) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2400
            "/ Thresholding
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2401
            "/      BILEVEL         -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2402
            "/      HALFTONE        -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2403
            "/      ERRORDIFFUSE    -> 3
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
            "thresholding := value."
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2406
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2407
            "/ 'thresholding ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2408
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 == 264) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2412
            "CellWidth"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2413
            "/ 'cellWidth ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2414
            metaData at:#CellWidth 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 == 265) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2418
            "CellLength"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2419
            "/ 'cellLength ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2420
            metaData at:#CellLength put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2421
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2422
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2423
        (tagType == 266) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2424
            "fillOrder"
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  2425
            (value == FILLORDER_MSB2LSB ) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2426
                fillOrder := #msb
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2427
            ] ifFalse:[
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  2428
                (value == FILLORDER_LSB2MSB) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2429
                    fillOrder := #lsb
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2430
                ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2431
                    fillOrder := nil
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2432
                ]
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2433
            ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2434
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2435
                Logger info:'      fillorder: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2436
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2437
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2438
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2439
        (tagType == 269) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2440
            "documentName - info only"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2441
            metaData at:#DocumentName put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2442
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2443
                Logger info:'      documentName: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2444
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2445
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2446
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2447
        (tagType == 270) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2448
            "imageDescription - info only"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2449
            metaData at:#ImageDescription put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2450
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2451
                Logger info:'      imageDescription: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2452
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2453
            ^ self
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
        (tagType == 271) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2456
            "make - info only"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2457
            metaData at:#Make put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2458
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2459
                Logger info:'      make: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2460
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2461
            ^ self
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
        (tagType == 272) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2464
            "model - info only"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2465
            metaData at:#Model put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2466
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2467
                Logger info:'      model: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2468
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2469
            ^ self
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
        (tagType == 273) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2472
            "stripOffsets"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2473
            stripOffsets := valueArray.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2474
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2475
                Logger info:'      stripOffsets: %1' with:valueArray 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2476
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2477
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2478
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2479
        (tagType == 274) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2480
            "Orientation"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2481
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2482
            orientation :=
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2483
                            #( nil          "/ 1 normal (topLeft)
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2484
                               hFlip        "/ 2 horizontal flip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2485
                               hvFlip       "/ 3 horizontal & vertical flip
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2486
                               vFlip        "/ 4 vertical flip
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2487
                               rot90ccw     "/ 5 rot 90' counter clock-wise
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2488
                               rot90        "/ 6 rot 90' clock-wise
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2489
                               rot90flip    "/ 7 rot 90' & flip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2490
                               rot90ccwFlip "/ 8 rot 90' ccw & flip
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2491
                             ) at:value ifAbsent:#unsupported.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2492
            metaData at:#Orientation put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2493
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2494
                Logger info:'      orientation: %1 (=%2)' with:value with:(orientation ? #normal)
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2495
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2496
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2497
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2498
        (tagType == 277) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2499
            samplesPerPixel := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2500
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2501
                Logger info:'      samplesperpixel: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2502
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2503
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2504
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2505
        (tagType == 278) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2506
            rowsPerStrip := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2507
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2508
                Logger info:'      rowsPerStrip: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2509
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2510
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2511
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2512
        (tagType == 279) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2513
            "stripbytecount"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2514
            stripByteCounts := valueArray.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2515
            "/        'stripByteCounts Array(' print. 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2516
            "/        stripByteCounts size print.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2517
            "/        ')' printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2518
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2519
                Logger info:'      stripByteCounts: %1' with:valueArray 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2520
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2521
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2522
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2523
        (tagType == 280) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2524
            "/ minSampleValue
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2525
            metaData at:#MinSampleValue put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2526
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2527
                Logger info:'      minSampleValue: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2528
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2529
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2530
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2531
        (tagType == 281) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2532
            "/ maxSampleValue
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2533
            metaData at:#MaxSampleValue put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2534
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2535
                Logger info:'      maxSampleValue: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2536
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2537
            ^ self
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
        (tagType == 282) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2540
            "/ xResolution
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2541
            metaData at:#ResolutionX put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2542
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2543
                Logger info:'      xResolution: %1 (%2)' with:value with:value asFloat 
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2544
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2545
            ^ self
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
        (tagType == 283) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2548
            "/ yResolution
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2549
            metaData at:#ResolutionY put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2550
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2551
                Logger info:'      yResolution: %1 (%2)' with:value with:value asFloat 
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2552
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2553
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2554
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2555
        (tagType == 284) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2556
            (value == 1) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2557
                planarConfiguration := PLANARCONFIG_CONTIG
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2558
            ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2559
                (value == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2560
                    planarConfiguration := PLANARCONFIG_SEPARATE
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2561
                ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2562
                    planarConfiguration := nil
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
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2565
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2566
                Logger info:'      planarConfiguration: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2567
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2568
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2569
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2570
        (tagType == 285) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2571
            "/ 'pageName ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2572
            metaData at:#PageName put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2573
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2574
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2575
        (tagType == 286) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2576
            "/ xPosition
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2577
            metaData at:#PositionX put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2578
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2579
                Logger info:'      xPosition: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2580
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2581
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2582
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2583
        (tagType == 287) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2584
            "/ yPosition
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2585
            metaData at:#PositionY put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2586
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2587
                Logger info:'      yPosition: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2588
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2589
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2590
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2591
        (tagType == 288) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2592
            "/ 'freeOffsets ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2593
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2594
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2595
        (tagType == 289) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2596
            "/ 'freeByteCounts ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2597
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2598
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2599
        (tagType == 290) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2600
            "/ 'grayResponceUnit' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2601
            metaData at:#GrayResponceUnit put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2602
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2603
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2604
        (tagType == 291) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2605
            "/ 'grayResponceCurve' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2606
            metaData at:#GrayResponceCurve put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2607
            ^ self
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
        (tagType == 292) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2610
            "/ group3options (now called T4Options)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2611
            "/      2DENCODING      -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2612
            "/      UNCOMPRESSED    -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2613
            "/      FILLBITS        -> 4
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
            group3options := value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2616
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2617
                Logger info:'      group3options: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2618
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2619
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2620
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2621
        (tagType == 293) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2622
            "/ group4options (now called T6Options)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2623
            "/      UNCOMPRESSED    -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2624
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2625
            "/ group4options := value.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2626
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2627
                Logger info:'      group4options: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2628
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2629
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2630
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2631
        (tagType == 296) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2632
            "resolutionunit"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2633
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2634
            "/        (value == 1) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2635
            "/            'res-unit pixel' 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
            "/            (value == 2) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2638
            "/                'res-unit inch' printNewline
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2639
            "/            ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2640
            "/                (value == 3) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2641
            "/                    'res-unit mm' printNewline
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2642
            "/                ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2643
            "/                    'res-unit invalid' printNewline
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
            "/            ]
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
            metaData at:#ResolutionUnit put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2648
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2649
                Logger info:'      resolutionUnit: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2650
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2651
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2652
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2653
        (tagType == 297) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2654
            "/ 'pageNumber ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2655
            metaData at:#PageNumber put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2656
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2657
                Logger info:'      PageNumber: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2658
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2659
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2660
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2661
    ].
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 between:300 and:399) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2664
        (tagType == 300) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2665
            "/ 'colorResponceUnit' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2666
            metaData at:#ColorResponceUnit put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2667
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2668
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2669
        (tagType == 301) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2670
            "/ 'colorResponceCurve' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2671
            metaData at:#ColorResponceCurve put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2672
            ^ self
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
        (tagType == 305) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2675
            "software - info only"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2676
            metaData at:#Software put:value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2677
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2678
                Logger info:'      software: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2679
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2680
            ^ self
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
        (tagType == 306) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2683
            "dateTime - info only"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2684
            metaData at:#DateTime put:value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2685
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2686
                Logger info:'      dateTime: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2687
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2688
            ^ self
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
        (tagType == 315) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2691
            "artist - info only"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2692
            metaData at:#Artist put:value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2693
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2694
                Logger info:'      artist: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2695
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2696
            ^ self
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
        (tagType == 316) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2699
            "host computer - info only"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2700
            metaData at:#HostComputer put:value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2701
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2702
                Logger info:'      host: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2703
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2704
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2705
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2706
        (tagType == 317) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2707
            "/ predictor
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2708
            "/ 1 -> no predictor
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2709
            "/ 2 -> horiz. difference (see tiff spec 6.0)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2710
            "/ 3 -> flt pnt (see adobe tech notes)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2711
            "/ 34892 -> horiz difference x2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2712
            "/ 34893 -> horiz difference x4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2713
            "/ 34894 -> flt pnt x2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2714
            "/ 34895 -> flt pnt x4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2715
            predictor := value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2716
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2717
                Logger info:'      predictor: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2718
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2719
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2720
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2721
        (tagType == 318) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2722
            "/ whitePoint
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2723
            metaData at:#WhitePoint put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2724
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2725
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2726
        (tagType == 319) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2727
            "/ primaryChromatics
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2728
            metaData at:#PrimaryChromatics put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2729
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2730
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2731
        (tagType == 320) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2732
            "/ 'colorMap (size=' print. valueArray size print. ')' printNewline.
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
            "
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2735
             the tiff colormap contains 16bit values;
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2736
             our colormap expects 8bit values
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2737
            "
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2738
            n := valueArray size // 3.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2739
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2740
            rV := ByteArray uninitializedNew:n.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2741
            gV := ByteArray uninitializedNew:n.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2742
            bV := ByteArray uninitializedNew:n.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2743
            scaleFactor := 255.0 / 16rFFFF.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2744
            i2 := n+1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2745
            i3 := 2*n+1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2746
            1 to:n do:[:vi |
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2747
                val := ((valueArray at:vi) * scaleFactor) rounded.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2748
                rV at:vi put:val.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2749
                val := ((valueArray at:i2) * scaleFactor) rounded.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2750
                gV at:vi put:val.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2751
                val := ((valueArray at:i3) * scaleFactor) rounded.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2752
                bV at:vi put:val.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2753
                i2 := i2 + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2754
                i3 := i3 + 1.
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
            colorMap := MappedPalette redVector:rV greenVector:gV blueVector:bV.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2757
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2758
                Logger info:'      colormap: ...'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2759
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2760
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2761
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2762
        (tagType == 321) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2763
            "/ halftonehints
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2764
            metaData at:#HalftoneHints put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2765
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2766
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2767
        (tagType == 322) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2768
            "/ tilewidth
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2769
            tileWidth := value.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2770
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2771
                Logger info:'      tileWidth: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2772
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2773
            (tileWidth \\ 16) == 0 ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2774
                Logger warning:'TIFFReader: tile width is not a multiple of 16'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2775
            ].    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2776
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2777
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2778
        (tagType == 323) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2779
            "/ tilelength (height)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2780
            tileLength := value.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2781
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2782
                Logger info:'      tileLength: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2783
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2784
            (tileLength \\ 16) == 0 ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2785
                Logger warning:'TIFFReader: tile height is not a multiple of 16'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2786
            ].    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2787
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2788
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2789
        (tagType == 324) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2790
            "/ tileoffsets
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2791
            tileOffsets := valueArray.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2792
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2793
                Logger info:'      tileOffsets: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2794
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2795
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2796
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2797
        (tagType == 325) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2798
            "/ tilebytecounts
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2799
            tileByteCounts := valueArray.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2800
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2801
                Logger info:'      tileByteCounts: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2802
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2803
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2804
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2805
        (tagType == 326) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2806
            "/ badFaxLines
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2807
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2808
                Logger info:'      badFaxLines: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2809
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2810
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2811
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2812
        (tagType == 327) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2813
            "CleanFaxData"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2814
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2815
                "/        'cleanfaxdata' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2816
                "/        (value == 0) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2817
                "/            'no lines with incorrect pixel counts' 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
                "/            (value == 1) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2820
                "/                'incorrect lines were regenerated' printNewline
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2821
                "/            ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2822
                "/                (value == 2) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2823
                "/                    'incorrect lines were not regenerated' printNewline
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2824
                "/                ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2825
                "/                    'cleanfaxdata invalid' printNewline
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2826
                "/                ]
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2827
                "/            ]
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2828
                "/        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2829
                Logger info:'      cleanfaxdata: %1' with:value  
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2830
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2831
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2832
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2833
        (tagType == 328) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2834
            "/ consecutiveBadFaxLines
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2835
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2836
                Logger info:'      consecutiveBadFaxLines: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2837
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2838
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2839
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2840
        (tagType == 330) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2841
            "/ subifd
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2842
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2843
                Logger info:'      subifd: %1' with:valueArray 
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2844
            ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2845
            subIfds := valueArray. 
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2846
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2847
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2848
        (tagType == 332) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2849
            "/ 'ink set' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2850
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2851
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2852
        (tagType == 333) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2853
            "/ 'ink names' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2854
            metaData at:#IncNames put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2855
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2856
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2857
        (tagType == 334) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2858
            "/ 'numinks' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2859
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2860
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2861
        (tagType == 336) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2862
            "/ 'dot range' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2863
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2864
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2865
        (tagType == 337) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2866
            "/ 'target printer' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2867
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2868
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2869
        (tagType == 338) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2870
            "/ 'extrasamples' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2871
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2872
                Logger info:'      extrasamples: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2873
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2874
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2875
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2876
        (tagType == 339) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2877
            "/ 'sample format' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2878
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2879
                Logger info:'      sample format: %1 (=%2)' 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2880
                            with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2881
                            with:(#( uint int float undef ) at:value ifAbsent:'???')
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2882
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2883
            sampleFormat := value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2884
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2885
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2886
        (tagType == 340) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2887
            "/ 'min sample value' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2888
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2889
                Logger info:'      min sample value: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2890
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2891
            minSampleValue := value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2892
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2893
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2894
        (tagType == 341) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2895
            "/ 'max sample value' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2896
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2897
                Logger info:'      max sample value: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2898
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2899
            maxSampleValue := value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2900
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2901
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2902
        (tagType == 342) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2903
            "/ 'transfer range' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2904
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2905
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2906
        (tagType == 343) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2907
            "/ 'clip path' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2908
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2909
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2910
        (tagType == 344) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2911
            "/ 'xclip path units' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2912
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2913
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2914
        (tagType == 345) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2915
            "/ 'yclip path units' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2916
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2917
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2918
        (tagType == 346) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2919
            "/ 'indexed' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2920
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2921
        ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2922
        (tagType == 347) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2923
            "/ 'jpegtables' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2924
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2925
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2926
        (tagType == 351) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2927
            "/ opiproxy
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2928
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2929
        ].
3979
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
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2932
    (tagType between:400 and:499) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2933
        (tagType == 400) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2934
            "/ 'GlobalParametersIFD' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2935
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2936
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2937
        (tagType == 401) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2938
            "/ 'ProfileType' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2939
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2940
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2941
        (tagType == 402) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2942
            "/ 'FaxProfile' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2943
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2944
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2945
        (tagType == 403) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2946
            "/ 'CodingMethods' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2947
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2948
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2949
        (tagType == 404) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2950
            "/ 'VersionYear' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2951
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2952
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2953
        (tagType == 405) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2954
            "/ 'ModeNumber' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2955
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2956
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2957
        (tagType == 433) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2958
            "/ 'Decode' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2959
            ^ self
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 == 434) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2962
            "/ 'DefaultImageColor' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2963
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2964
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2965
    ].
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 between:500 and:599) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2968
        "/ obsolete JPEG tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2969
        (tagType == 512) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2970
            "/ 'jpeg proc' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2971
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2972
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2973
        (tagType == 513) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2974
            "/ 'jpeg proc' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2975
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2976
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2977
        (tagType == 514) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2978
            "/ 'jpeg ifByteCount' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2979
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2980
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2981
        (tagType == 515) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2982
            "/ 'jpeg restartInterval' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2983
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2984
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2985
        (tagType == 517) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2986
            "/ 'jpeg glossLessPredictors' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2987
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2988
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2989
        (tagType == 518) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2990
            "/ 'jpeg pointTransform' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2991
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2992
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2993
        (tagType == 519) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2994
            "/ 'jpeg qTables' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2995
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2996
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2997
        (tagType == 520) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2998
            "/ 'jpeg dcTables' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2999
             ^ self
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 == 521) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3002
            "/ 'jpeg acTables' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3003
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3004
        ].
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
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3007
        (tagType == 529) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3008
            "/ ycbr coeff
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3009
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3010
                Logger info:'      ycbr coeff: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3011
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3012
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3013
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3014
        (tagType == 530) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3015
            "/ ycbr subsampling
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3016
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3017
                Logger info:'      ycbr subsampling: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3018
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3019
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3020
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3021
        (tagType == 531) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3022
            "/ ycbr positioning
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3023
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3024
                Logger info:'      ycbr positioning: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3025
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3026
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3027
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3028
        (tagType == 532) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3029
            "/ referenceBlackWhite
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3030
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3031
                Logger info:'      referenceBlackWhite: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3032
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3033
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3034
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3035
        (tagType == 559) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3036
            "/ stripRowCounts
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3037
            "/ Defined in the Mixed Raster Content part of RFC 2301, 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3038
            "/ used to replace RowsPerStrip for IFDs with variable-sized strips.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3039
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3040
                Logger info:'      stripRowCounts: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3041
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3042
            stripRowCounts := valueArray.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3043
            ^ self
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
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3046
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3047
    (tagType between:700 and:799) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3048
        (tagType == 700) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3049
            "XMP metadata (xml)"
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3050
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3051
            "/ 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
  3052
            "/ 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
  3053
            "/ 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
  3054
            "/ XML Packets
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3055
            
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3056
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3057
                Logger info:'      XMLPACKET: %1' with:value asString
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3058
            ].
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3059
            decodeMetaTags == true ifTrue:[
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3060
                metaData at:#xmpData put:value asString.
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3061
            ].    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3062
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3063
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3064
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3065
    
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3066
    (tagType between:18000 and:18999) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3067
        (tagType == 18246) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3068
            "/ Image Rating by windows
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3069
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3070
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3071
        (tagType == 18249) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3072
            "/ Image Rating Percent by windows
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3073
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3074
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3075
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3076
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3077
    (tagType between:32000 and:32999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3078
        (tagType == 32781) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3079
            "/'imageid' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3080
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3081
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3082
        (tagType == 32932) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3083
            "/'wang annotation' 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
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3087
        "/ Private Island graphics tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3088
        (tagType == 32953) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3089
            "/'ref points' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3090
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3091
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3092
        (tagType == 32954) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3093
            "/ 'regionTagPoint' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3094
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3095
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3096
        (tagType == 32955) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3097
            "/ 'regionWarpCorners' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3098
            ^ self
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
        (tagType == 32956) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3101
            "/ 'regionAffine' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3102
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3103
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3104
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3105
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3106
        "/ Private SGI tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3107
        (tagType == 32995) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3108
            "/ 'matteing' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3109
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3110
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3111
        
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3112
        (tagType == 32996) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3113
            "/ datatype
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3114
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3115
                Logger info:'      datatype: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3116
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3117
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3118
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3119
        (tagType == 32997) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3120
            "/ imagedepth
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3121
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3122
                Logger info:'      imagedepth: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3123
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3124
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3125
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3126
        (tagType == 32998) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3127
            "/ tiledepth
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3128
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3129
                Logger info:'      tiledepth: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3130
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3131
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3132
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3133
    ].
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 between:33000 and:33999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3136
        "/ Private Pixar tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3137
        (tagType == 33300) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3138
            "/ 'image full width' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3139
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3140
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3141
        (tagType == 33301) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3142
            "/ 'image full length' 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
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3146
        "/ Private Eastman Kodak tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3147
        (tagType == 33405) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3148
            "/ 'write serial number' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3149
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3150
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3151
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3152
        (tagType == 33421) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3153
            "/ CFARepeatPatternDim - For camera raw files from sensors with CFA overlay
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3154
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3155
                Logger info:'      CFARepeatPatternDim: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3156
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3157
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3158
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3159
        (tagType == 33422) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3160
            "/ CFAPattern - For camera raw files from sensors with CFA overlay
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3161
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3162
                Logger info:'      CFAPattern: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3163
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3164
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3165
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3166
        (tagType == 33423) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3167
            "/ BatteryLevel - Encodes camera battery level at time of image capture
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3168
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3169
        ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3170
        (tagType == 33432) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3171
            "/ 'copyright' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3172
            ^ self
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
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3175
        (tagType == 33550) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3176
            "/ 'geotiff modelpixelscaletag' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3177
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3178
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3179
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3180
        (tagType == 33723) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3181
            "/ 'RICHTIFFIPTC' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3182
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3183
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3184
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3185
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3186
        (tagType == 33920) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3187
            "/ 'geotiff IntergraphMatrixTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3188
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3189
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3190
        (tagType == 33922) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3191
            "/ 'geotiff ModelTiepointTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3192
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3193
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3194
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3195
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3196
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3197
    (tagType between:34000 and:34999) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3198
        (tagType == 34016) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3199
            "/ Site
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3200
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3201
                Logger info:'      site: %1' with:value 
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
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3204
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3205
        (tagType == 34017) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3206
            "/ colorSequence
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3207
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3208
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3209
        (tagType == 34018) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3210
            "/ it8header
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3211
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3212
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3213
        (tagType == 34019) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3214
            "/ rasterPadding
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3215
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3216
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3217
        (tagType == 34020) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3218
            "/ bitsPerRunLength
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3219
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3220
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3221
        (tagType == 34021) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3222
            "/ bitsPerExtendedRunLength
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3223
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3224
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3225
        (tagType == 34022) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3226
            "/ colorTable
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3227
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3228
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3229
        (tagType == 34023) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3230
            "/ imageColorIndicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3231
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3232
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3233
        (tagType == 34024) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3234
            "/ backgroundColorIndicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3235
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3236
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3237
        (tagType == 34025) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3238
            "/ imageColorValue
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3239
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3240
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3241
        (tagType == 34026) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3242
            "/ backgroundColorValue
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3243
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3244
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3245
        (tagType == 34027) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3246
            "/ pixelIntensityRange
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3247
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3248
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3249
        (tagType == 34028) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3250
            "/ transparencyIndicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3251
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3252
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3253
        (tagType == 34029) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3254
            "/ colorCharacterization
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3255
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3256
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3257
        (tagType == 34030) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3258
            "/ hcUsage
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3259
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3260
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3261
        (tagType == 34031) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3262
            "/ trapIndicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3263
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3264
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3265
        (tagType == 34032) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3266
            "/ cmykEquivalent
3979
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
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3270
        "/ Private Pixel magic
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3271
        (tagType == 34232) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3272
            "/ 'jbig options' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3273
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3274
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3275
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3276
        (tagType == 34264) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3277
            "/ 'geotiff ModelTransformationTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3278
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3279
        ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3280
        "/ private Photoshop
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3281
        (tagType == 34377) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3282
            "/ RICHTIFFIPTC
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3283
            "/ IPTC (International Press Telecommunications Council) metadata.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3284
            "/ (see http://www.iptc.org/std/photometadata/specification/IPTC-PhotoMetadata)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3285
            decodeMetaTags == true ifTrue:[
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3286
                Verbose == true ifTrue:[ 
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3287
                    Logger info:'      RICHTIFFIPTC: %1' with:value
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3288
                ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3289
                self decodePhotoshopImageResourceBlock:value.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3290
            ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3291
                Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3292
                    Logger info:'      skipped decoding of IPTC-PhotoMetadata'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3293
                ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3294
            ].    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3295
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3296
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3297
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3298
        (tagType == 34665) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3299
            "/ EXIFIFD
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3300
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3301
                Logger info:'      EXIFIFD: %1' with:value 
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
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3304
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3305
        (tagType == 34675) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3306
            "/ 'ICCPROFILE' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3307
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3308
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3309
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3310
        (tagType == 34732) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3311
            "/ 'ImageLayer' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3312
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3313
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3314
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3315
        (tagType == 34735) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3316
            "/ 'geotiff GeoKeyDirectoryTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3317
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3318
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3319
        (tagType == 34736) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3320
            "/ 'geotiff GeoDoubleParamsTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3321
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3322
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3323
        (tagType == 34737) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3324
            "/ 'geotiff GeoAsciiParamsTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3325
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3326
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3327
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3328
        
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3329
        (tagType == 34859) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3330
            "/ '???' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3331
            "/ Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3332
            "/     Logger info:'      ?: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3333
            "/ ].
3979
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
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3337
        "/ More Private SGI
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3338
        (tagType == 34908) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3339
            "/ 'fax recv params' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3340
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3341
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3342
        (tagType == 34909) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3343
            "/ 'fax subaddress' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3344
            ^ self
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 == 34910) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3347
            "/ 'fax recv time' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3348
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3349
        ].
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
    (tagType between:36000 and:36999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3353
        (tagType == 36867) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3354
            "/ '???' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3355
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3356
        ].
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
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3359
    (tagType between:37000 and:37999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3360
        (tagType == 37390) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3361
            "/ '???' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3362
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3363
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3364
        (tagType == 37391) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3365
            "/ '???' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3366
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3367
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3368
        (tagType == 37392) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3369
            "/ '???' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3370
            ^ self
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 == 37398) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3373
            "/ '???' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3374
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3375
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3376
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3377
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3378
    (tagType between:42000 and:42999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3379
        (tagType == 42112) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3380
            "/ 'GDAL_METADATA' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3381
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3382
                Logger info:'      GDAL_METADATA: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3383
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3384
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3385
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3386
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3387
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3388
    "/ 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
  3389
    (tagType between:50000 and:50999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3390
        (tagType == 50706) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3391
            "/ DNGVersion
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3392
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3393
                Logger info:'      DNGVersion: %1' with:value
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3394
            ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3395
            isDNGImage := true.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3396
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3397
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3398
        (tagType == 50707) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3399
            "/ DNGBackwardVersion
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3400
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3401
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3402
        (tagType == 50708) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3403
            "/ UniqueCameraModel
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3404
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3405
                Logger info:'      UniqueCameraModel: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3406
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3407
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3408
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3409
        (tagType == 50709) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3410
            "/ LocalizedCameraModel
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3411
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3412
                Logger info:'      LocalizedCameraModel: %1' with:value
3979
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
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3415
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3416
        (tagType == 50710) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3417
            "/ 'CFAPlaneColor' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3418
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3419
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3420
        (tagType == 50711) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3421
            "/ 'CFALayout' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3422
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3423
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3424
        (tagType == 50712) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3425
            "/ 'LinearizationTable' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3426
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3427
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3428
        (tagType == 50713) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3429
            "/ 'BlackLevelRepeatDim' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3430
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3431
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3432
        (tagType == 50714) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3433
            "/ 'BlackLevel' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3434
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3435
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3436
        (tagType == 50715) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3437
            "/ 'BlackLevelDeltaH' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3438
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3439
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3440
        (tagType == 50716) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3441
            "/ 'BlackLevelDeltaV' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3442
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3443
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3444
        (tagType == 50717) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3445
            "/ 'WhiteLevel' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3446
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3447
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3448
        (tagType == 50718) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3449
            "/ 'DefaultScale' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3450
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3451
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3452
        (tagType == 50719) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3453
            "/ 'DefaultCropOrigin' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3454
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3455
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3456
        (tagType == 50720) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3457
            "/ 'DefaultCropSize' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3458
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3459
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3460
        (tagType == 50721) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3461
            "/ 'ColorMatrix1' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3462
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3463
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3464
        (tagType == 50722) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3465
            "/ 'ColorMatrix2' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3466
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3467
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3468
        (tagType == 50723) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3469
            "/ 'CameraCalibrarion1' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3470
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3471
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3472
        (tagType == 50724) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3473
            "/ 'CameraCalibrarion2' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3474
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3475
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3476
        (tagType == 50725) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3477
            "/ 'ReductionMatrix1' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3478
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3479
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3480
        (tagType == 50726) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3481
            "/ 'ReductionMatrix2' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3482
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3483
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3484
        (tagType == 50727) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3485
            "/ 'AnalogBalance' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3486
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3487
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3488
        (tagType == 50728) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3489
            "/ 'AsShotNeutral' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3490
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3491
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3492
        (tagType == 50729) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3493
            "/ 'AsShotWhiteXY' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3494
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3495
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3496
        (tagType == 50730) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3497
            "/ 'BaselineExposure' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3498
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3499
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3500
        (tagType == 50731) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3501
            "/ 'BaselineNoise' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3502
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3503
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3504
        (tagType == 50732) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3505
            "/ 'BaselineSharpness' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3506
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3507
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3508
        (tagType == 50733) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3509
            "/ 'ByerGreenSplit' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3510
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3511
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3512
        (tagType == 50734) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3513
            "/ 'LinearResponseLimit' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3514
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3515
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3516
        (tagType == 50735) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3517
            "/ 'CameraSerialNumber' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3518
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3519
                Logger info:'      CameraSerialNumber: %1' with:value
3979
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
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3522
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3523
        (tagType == 50736) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3524
            "/ 'LensInfo' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3525
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3526
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3527
        (tagType == 50737) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3528
            "/ 'ChromaBlurRadius' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3529
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3530
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3531
        (tagType == 50738) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3532
            "/ 'AntiAliasStrength' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3533
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3534
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3535
        (tagType == 50739) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3536
            "/ 'ShadowScale' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3537
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3538
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3539
        (tagType == 50740) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3540
            "/ 'DNGPrivateData' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3541
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3542
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3543
        (tagType == 50741) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3544
            "/ 'MakerNoteSafety' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3545
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3546
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3547
        
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3548
        (tagType == 50778) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3549
            "/ 'CalibrationIlluminant1' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3550
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3551
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3552
        (tagType == 50779) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3553
            "/ 'CalibrationIlluminant2' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3554
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3555
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3556
        (tagType == 50780) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3557
            "/ 'BestQualityScale' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3558
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3559
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3560
        (tagType == 50781) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3561
            "/ 'RawDataUniqueID' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3562
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3563
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3564
        
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3565
        (tagType == 50827) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3566
            "/ 'OriginalRawFileName' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3567
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3568
        ].
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
    
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
"/ 'TIFFReader: tag:' print. tagType print. ' typ:' print. numberType print.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3573
"/ ' len:' print. length print. ' offs:' print. offset print. 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3574
"/ ' val:' print. value print. ' valArr:' print. valueArray printNewline.  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3575
"/
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3576
    'TIFFReader [warning]: unknown tag type ' errorPrint. tagType errorPrintCR
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3577
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3578
    "Modified (format): / 23-05-2017 / 16:12:58 / mawalch"
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  3579
    "Modified: / 28-08-2017 / 00:48:37 / cg"
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3580
!
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3581
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3582
positionToStrip:stripNr
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3583
    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
  3584
!
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3585
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3586
positionToTile:tileNr
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3587
    inStream position:((metaData at:#'TileOffsets') at:tileNr).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3588
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3589
    "Created: / 25-08-2017 / 13:43:30 / cg"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3590
!
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3591
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
  3592
readBytes:n signed:isSigned
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3593
    "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
  3594
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3595
    |oldPos offset bytes nInline|
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3596
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3597
    nInline := isBigTiff ifTrue:[8] ifFalse:[4].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3598
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3599
    n == 0 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3600
        "/ even in this case, one WORD is to be skipped.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3601
        inStream skip:nInline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3602
        ^ ''
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3603
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3604
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
  3605
    bytes := (isSigned ifTrue:[Array] ifFalse:[ByteArray]) new:n.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3606
    (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
  3607
        isSigned ifTrue:[
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3608
            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
  3609
        ] ifFalse:[
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3610
            inStream nextBytes:n into:bytes.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3611
        ].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3612
        (n < nInline) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3613
            inStream skip:(nInline - n).
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3614
        ]
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3615
    ] ifFalse:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3616
        offset := inStream nextInt32MSB:(byteOrder ~~ #lsb).
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3617
        oldPos := inStream position.
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3618
        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
  3619
        isSigned ifTrue:[
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3620
            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
  3621
        ] ifFalse:[
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3622
            inStream nextBytes:n into:bytes.
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
        inStream position:oldPos
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3625
    ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3626
    ^ bytes
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3627
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3628
    "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
  3629
!
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3630
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3631
readChars:n
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3632
    "read n characters and return them in a string"
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3633
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3634
    |oldPos offset string nInline|
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3635
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3636
    nInline := isBigTiff ifTrue:[8] ifFalse:[4].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3637
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3638
    n == 0 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3639
        "/ even in this case, one WORD is to be skipped.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3640
        inStream skip:nInline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3641
        ^ ''
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3642
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3643
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3644
    string := String new:(n - 1).
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3645
    (n <= nInline) ifTrue:[
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3646
        inStream nextBytes:(n - 1) into:string.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3647
        inStream next. "/ skip the 0-byte.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3648
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3649
        (n < nInline) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3650
            inStream skip:(nInline - n).
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3651
        ]
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3652
    ] ifFalse:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3653
        offset := inStream nextInt32MSB:(byteOrder == #msb).
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3654
        oldPos := inStream position.
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3655
        inStream position:offset.
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3656
        inStream nextBytes:(n - 1) into:string.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3657
        inStream position:oldPos
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3658
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3659
    ^ string
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3660
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3661
    "Modified: / 27-08-2017 / 19:55:15 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3662
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3663
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3664
readDoubles:nFloats
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  3665
    "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
  3666
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3667
    |oldPos offset values val msb 
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3668
     n "{ Class: SmallInteger }" |
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3669
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3670
    n := nFloats.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3671
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3672
    msb := byteOrder ~~ #lsb.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3673
    values := DoubleArray basicNew:n.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3674
    (n == 1) ifTrue:[
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  3675
        val := Float readBinaryIEEEDoubleFrom:inStream MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3676
        values at:1 put:val.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3677
    ] ifFalse:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3678
        offset := inStream nextInt32MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3679
        oldPos := inStream position.
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3680
        inStream position:offset.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3681
        1 to:n do:[:index |
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  3682
            val := Float readBinaryIEEEDoubleFrom:inStream MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3683
            values at:index put:val
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
        inStream position:oldPos
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3686
    ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3687
    ^ values
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3688
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3689
    "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
  3690
!
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
readFloats:nFloats
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3693
    "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
  3694
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3695
    |oldPos offset values val val1 val2 msb 
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3696
     n "{ Class: SmallInteger }" |
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3697
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3698
    n := nFloats.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3699
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3700
    msb := byteOrder ~~ #lsb.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3701
    values := FloatArray basicNew:n.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3702
    (isBigTiff and:[ n == 2 ]) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3703
        val1 := ShortFloat readBinaryIEEESingleFrom:inStream MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3704
        val2 := ShortFloat readBinaryIEEESingleFrom:inStream MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3705
        values at:1 put:val1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3706
        n == 2 ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3707
            values at:2 put:val2.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3708
        ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3709
    ] ifFalse:[    
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3710
        (n == 1) ifTrue:[
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  3711
            val := ShortFloat readBinaryIEEESingleFrom:inStream MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3712
            values at:1 put:val.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3713
        ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3714
            offset := inStream nextInt32MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3715
            oldPos := inStream position.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3716
            inStream position:offset.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3717
            1 to:n do:[:index |
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3718
                val := ShortFloat readBinaryIEEESingleFrom:inStream MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3719
                values at:index put:val
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3720
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3721
            inStream position:oldPos
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3722
        ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3723
    ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3724
    ^ values
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3725
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3726
    "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
  3727
!
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3728
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
  3729
readFracts:nFracts signed:isSigned
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3730
    "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
  3731
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3732
    |oldPos offset values numerator denominator msb
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3733
     n "{ Class: SmallInteger }" |
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3734
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3735
    n := nFracts.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3736
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3737
    msb := byteOrder ~~ #lsb.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3738
    values := Array basicNew:n.
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3739
    offset := inStream nextInt32MSB:msb.
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3740
    oldPos := inStream position.
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3741
    inStream position:offset.
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3742
    1 to:n do:[:index |
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3743
        numerator := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3744
        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
  3745
        values at:index put:(Fraction numerator:numerator denominator:denominator)
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3746
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3747
    inStream position:oldPos.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3748
    ^ values
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3749
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3750
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3751
readLong8s:nLongs signed:isSigned
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3752
    "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
  3753
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3754
    |oldPos offset values val msb 
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3755
     n "{ Class: SmallInteger }" |
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3756
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3757
    n := nLongs.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3758
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3759
    msb := byteOrder ~~ #lsb.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3760
    values := Array basicNew:n.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3761
    (n == 1) ifTrue:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3762
        val := isSigned ifTrue:[inStream nextInt64MSB:msb] ifFalse:[inStream nextUnsignedInt64MSB:msb].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3763
        values at:1 put:val.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3764
    ] ifFalse:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3765
        offset := inStream nextInt64MSB:msb.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3766
        oldPos := inStream position.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3767
        inStream position:offset.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3768
        1 to:n do:[:index |
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3769
            val := isSigned ifTrue:[inStream nextInt64MSB:msb] ifFalse:[inStream nextUnsignedInt64MSB:msb].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3770
            values at:index put:val
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
        inStream position:oldPos
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3773
    ].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3774
    ^ values
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3775
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3776
    "Created: / 24-08-2017 / 22:01:26 / cg"
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3777
!
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3778
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
  3779
readLongs:nLongs signed:isSigned
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3780
    "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
  3781
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3782
    |oldPos offset values val val1 val2 msb 
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3783
     n "{ Class: SmallInteger }" |
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3784
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3785
    n := nLongs.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3786
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3787
    msb := byteOrder ~~ #lsb.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3788
    values := Array basicNew:n.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3789
    (isBigTiff and:[ n <= 2 ]) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3790
        val1 := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3791
        val2 := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3792
        values at:1 put:val1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3793
        n == 2 ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3794
            values at:2 put:val2.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3795
        ].
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3796
    ] ifFalse:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3797
        (n == 1) ifTrue:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3798
            val := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3799
            values at:1 put:val.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3800
        ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3801
            offset := inStream nextInt32MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3802
            oldPos := inStream position.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3803
            inStream position:offset.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3804
            1 to:n do:[:index |
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3805
                val := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3806
                values at:index put:val
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3807
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3808
            inStream position:oldPos
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3809
        ].
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3810
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3811
    ^ values
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3812
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3813
    "Modified: / 24-08-2017 / 23:35:38 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3814
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3815
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
  3816
readShorts:nShorts signed:isSigned
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3817
    "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
  3818
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3819
    |oldPos offset values msb val1 val2 val3 val4
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3820
     n "{ Class: SmallInteger }" |
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3821
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3822
    n := nShorts.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3823
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3824
    msb := (byteOrder ~~ #lsb).
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3825
    values := Array basicNew:n.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3826
    (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
  3827
        isSigned ifTrue:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3828
            val1 := inStream nextInt16MSB:msb.
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3829
            val2 := inStream nextInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3830
            val3 := inStream nextInt16MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3831
            val4 := inStream nextInt16MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3832
        ] ifFalse:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3833
            val1 := inStream nextUnsignedInt16MSB:msb.
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3834
            val2 := inStream nextUnsignedInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3835
            val3 := inStream nextUnsignedInt16MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3836
            val4 := inStream nextUnsignedInt16MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3837
        ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3838
        values at:1 put:val1.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3839
        (n >= 2) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3840
            values at:2 put:val2.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3841
            (n >= 3) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3842
                values at:3 put:val3.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3843
                (n == 4) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3844
                    values at:4 put:val4.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3845
                ]
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3846
            ]
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3847
        ]
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3848
    ] ifFalse:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3849
        (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
  3850
            isSigned ifTrue:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3851
                val1 := inStream nextInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3852
                val2 := inStream nextInt16MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3853
            ] ifFalse:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3854
                val1 := inStream nextUnsignedInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3855
                val2 := inStream nextUnsignedInt16MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3856
            ].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3857
            values at:1 put:val1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3858
            (n == 2) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3859
                values at:2 put:val2
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3860
            ]
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3861
        ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3862
            offset := inStream nextInt32MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3863
            oldPos := inStream position.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3864
            inStream position:offset.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3865
            1 to:n do:[:index |
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3866
                isSigned ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3867
                    val1 := inStream nextInt16MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3868
                ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3869
                    val1 := inStream nextUnsignedInt16MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3870
                ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3871
                values at:index put:val1
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3872
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3873
            inStream position:oldPos
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3874
        ].
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3875
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3876
    ^ values
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3877
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3878
    "Modified: / 24-08-2017 / 23:33:09 / cg"
3984
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
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3881
readSingleTagFrom:aStream
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3882
    |msb tagType numberType length|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3883
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3884
    msb := (byteOrder == #msb).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3885
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3886
    tagType := aStream nextUnsignedInt16MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3887
    numberType := aStream nextUnsignedInt16MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3888
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3889
    isBigTiff ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3890
        length := aStream nextInt32MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3891
    ] ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3892
        length := aStream nextInt64MSB:msb.
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
    self decodeTiffTag:tagType numberType:numberType length:length.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3895
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3896
    "Created: / 26-08-2017 / 11:04:50 / cg"
4015
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  3897
    "Modified: / 17-09-2017 / 13:06:32 / cg"
3984
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
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3900
readTagsFrom:aStream
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3901
    |numberOfTags msb|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3902
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3903
    msb := (byteOrder == #msb).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3904
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3905
    isBigTiff ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3906
        numberOfTags := aStream nextUnsignedInt16MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3907
    ] ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3908
        numberOfTags := aStream nextUnsignedInt64MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3909
    ].
4015
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  3910
    numberOfTags isNil ifTrue:[
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  3911
        "/ EOF
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  3912
        ^ self
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  3913
    ].
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  3914
    
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3915
    1 to:numberOfTags do:[:index |
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3916
        self readSingleTagFrom:aStream.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3917
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3918
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3919
    "Created: / 26-08-2017 / 11:03:45 / cg"
4015
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  3920
    "Modified: / 17-09-2017 / 11:28:03 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3921
! !
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3922
1762
55cf76514c8c method category rename
Claus Gittinger <cg@exept.de>
parents: 1759
diff changeset
  3923
!TIFFReader methodsFor:'private-writing'!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3924
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3925
writeBitsPerSample
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
  3926
"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3927
'bitsPerSample: ' print. bitsPerSample printNewline.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3928
'store bitspersample at: ' print. outStream position printNewline.
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
  3929
"
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3930
    bitsPerSamplePos := outStream position.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3931
    bitsPerSample do:[:n |
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  3932
        self writeShort:n
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3933
    ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3934
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3935
3f9277473954 Initial revision
claus
parents:
diff changeset
  3936
writeColorMap
28
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
  3937
    |n|
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
  3938
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3939
    colorMapPos := outStream position.
35
f13cdd0b44c7 *** empty log message ***
claus
parents: 32
diff changeset
  3940
    #(red green blue) do:[:component |
440
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3941
        n := 0.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3942
        colorMap do:[:clr |
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3943
            |entry|
35
f13cdd0b44c7 *** empty log message ***
claus
parents: 32
diff changeset
  3944
440
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3945
            clr isNil ifTrue:[
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3946
                entry := 0
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3947
            ] ifFalse:[
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3948
                entry := clr perform:component.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3949
                "
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3950
                 tiff map is 16 bit - scale from percent to 0..16rFFFF
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3951
                "
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3952
                entry := (entry * 16rFFFF / 100) rounded.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3953
            ].
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3954
            self writeShort:entry.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3955
            n := n + 1
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3956
        ].
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3957
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3958
        "
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3959
         fill to 256 entries
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3960
        "
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3961
        [n < 256] whileTrue:[
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3962
            self writeShort:0.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3963
            n := n + 1.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3964
        ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3965
    ]
440
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3966
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3967
    "Modified: 20.2.1997 / 18:06:10 / cg"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3968
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3969
3f9277473954 Initial revision
claus
parents:
diff changeset
  3970
writeStripByteCounts
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
  3971
"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3972
'stripByteCounts: ' print. stripByteCounts printNewline.
3f9277473954 Initial revision
claus
parents:
diff changeset
  3973
'store stripbytecounts at: ' print. outStream position printNewline.
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
  3974
"
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3975
    stripByteCountsPos := outStream position.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3976
    stripByteCounts do:[:c |
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  3977
        self writeShort:c
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3978
    ]
3f9277473954 Initial revision
claus
parents:
diff changeset
  3979
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3980
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3981
writeStripOffsets
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
  3982
"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3983
'stripOffsets: ' print. stripOffsets printNewline.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3984
'store stripoffsets at: ' print. outStream position printNewline.
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
  3985
"
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3986
    stripOffsetsPos := outStream position.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3987
    stripOffsets do:[:o |
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  3988
        self writeLong:o
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3989
    ]
3f9277473954 Initial revision
claus
parents:
diff changeset
  3990
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3991
3f9277473954 Initial revision
claus
parents:
diff changeset
  3992
writeTag:tagType
3f9277473954 Initial revision
claus
parents:
diff changeset
  3993
    self writeTiffTag:tagType.
3f9277473954 Initial revision
claus
parents:
diff changeset
  3994
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3995
3f9277473954 Initial revision
claus
parents:
diff changeset
  3996
writeTiffTag:tagType
3f9277473954 Initial revision
claus
parents:
diff changeset
  3997
    |value valueArray numberType count address|
3f9277473954 Initial revision
claus
parents:
diff changeset
  3998
3f9277473954 Initial revision
claus
parents:
diff changeset
  3999
    count := 1.
3f9277473954 Initial revision
claus
parents:
diff changeset
  4000
    address := nil.
3f9277473954 Initial revision
claus
parents:
diff changeset
  4001
    (tagType == 253) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4002
        "tiff class"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4003
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4004
    (tagType == 254) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4005
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4006
    (tagType == 255) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4007
        "SubfileType"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4008
        value := subFileType.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4009
        numberType := #long.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4010
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4011
    (tagType == 256) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4012
        "ImageWidth"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4013
        value := width.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4014
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4015
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4016
    (tagType == 257) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4017
        "ImageHeight"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4018
        value := height.
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 == 258) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4022
        "bitspersample"
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  4023
        address := bitsPerSamplePos.
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4024
        numberType := #short.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4025
        count := bitsPerSample size.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4026
        valueArray := bitsPerSample
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4027
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4028
    (tagType == 259) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4029
        "compression"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4030
        value := compression.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4031
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4032
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4033
    (tagType == 262) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4034
        "photometric"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4035
        (photometric == #whiteIs0) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4036
            value := 0
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
            (photometric == #blackIs0) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4039
                value := 1
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4040
            ] ifFalse:[
4011
0dfddf756e27 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  4041
                ((photometric == #rgb) or:[(photometric == #rgba)]) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4042
                    value := 2
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4043
                ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4044
                    (photometric == #palette) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4045
                        value := 3
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4046
                    ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4047
                        (photometric == #transparency) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4048
                            value := 4
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4049
                        ] ifFalse:[
4011
0dfddf756e27 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  4050
                            self error:('TIFF-writer: unsupported photometric: ',photometric asString) mayProceed:true.
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4051
                        ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4052
                    ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4053
                ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4054
            ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4055
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4056
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4057
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4058
    (tagType == 263) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4059
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4060
    (tagType == 264) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4061
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4062
    (tagType == 265) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4063
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4064
    (tagType == 266) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4065
        "fillOrder"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4066
        (fillOrder == #msb) ifTrue:[
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4067
            value := FILLORDER_MSB2LSB
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4068
        ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4069
            (fillOrder == #lsb) ifTrue:[
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4070
                value := FILLORDER_LSB2MSB
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4071
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4072
                self error:'bad fillOrder' mayProceed:true
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4073
            ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4074
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4075
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4076
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4077
    (tagType == 269) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4078
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4079
    (tagType == 270) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4080
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4081
    (tagType == 271) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4082
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4083
    (tagType == 272) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4084
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4085
    (tagType == 273) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4086
        "stripoffsets"
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  4087
        address := stripOffsetsPos.
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4088
        numberType := #long.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4089
        count := stripOffsets size.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4090
        valueArray := stripOffsets
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4091
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4092
    (tagType == 274) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  4093
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4094
    (tagType == 277) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4095
        "samplesPerPixel"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4096
        value := samplesPerPixel.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4097
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4098
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4099
    (tagType == 278) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4100
        "rowsperstrip"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4101
        value := rowsPerStrip.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4102
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4103
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4104
    (tagType == 279) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4105
        "stripbytecount"
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  4106
        address := stripByteCountsPos.
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4107
        numberType := #short.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4108
        count := stripByteCounts size.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4109
        valueArray := stripByteCounts
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4110
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4111
    (tagType == 280) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4112
        "min sample value"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4113
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4114
    (tagType == 281) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4115
        "max sample value"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4116
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4117
    (tagType == 282) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4118
        "x resolution"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4119
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4120
    (tagType == 283) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4121
        "y resolution"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4122
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4123
    (tagType == 284) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4124
        "planarconfig"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4125
        value := planarConfiguration.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4126
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4127
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4128
    (tagType == 285) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4129
        "pageName"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4130
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4131
    (tagType == 286) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4132
        "xPosition"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4133
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4134
    (tagType == 287) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4135
        "yPosition"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4136
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4137
    (tagType == 288) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4138
        "freeOffsets"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4139
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4140
    (tagType == 289) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4141
        "freeByteCounts"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4142
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4143
    (tagType == 290) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4144
        "grayResponceUnit"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4145
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4146
    (tagType == 291) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4147
        "grayResponceCurve"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4148
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4149
    (tagType == 292) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4150
        "group3options"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4151
        value := group3options.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4152
        numberType := #long.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4153
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4154
    (tagType == 293) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4155
        "group4options"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4156
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4157
    (tagType == 296) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4158
        "resolutionunit"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4159
        ^ self
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4160
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4161
    (tagType == 297) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4162
        "pageNumber"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4163
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4164
    (tagType == 300) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4165
        "colorResponceUnit"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4166
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4167
    (tagType == 301) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4168
        "colorResponceCurve"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4169
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4170
    (tagType == 306) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4171
        "dateTime"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4172
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4173
    (tagType == 315) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4174
        "artist"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4175
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4176
    (tagType == 317) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4177
        "predictor"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4178
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4179
    (tagType == 320) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4180
        "colormap"
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  4181
        address := colorMapPos.
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4182
        numberType := #short.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4183
        count := 256 "(colorMap at:1) size" * 3.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4184
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4185
3f9277473954 Initial revision
claus
parents:
diff changeset
  4186
    (value isNil and:[address isNil]) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4187
        self error:'unhandled tag' mayProceed:true.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4188
        ^ self
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4189
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4190
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
  4191
"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4192
'tag:' print. tagType print. ' typ:' print. numberType print.
3f9277473954 Initial revision
claus
parents:
diff changeset
  4193
' len:' print. count print.
3f9277473954 Initial revision
claus
parents:
diff changeset
  4194
' val:' print. value printNewline.  
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
  4195
"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4196
3f9277473954 Initial revision
claus
parents:
diff changeset
  4197
    self writeShort:tagType.
3f9277473954 Initial revision
claus
parents:
diff changeset
  4198
    numberType == #short ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4199
        self writeShort:3.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4200
        self writeLong:count.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4201
    ] ifFalse:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4202
        numberType == #long ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4203
            self writeShort:4.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4204
            self writeLong:count.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4205
        ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4206
            numberType == #byte ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4207
                self writeShort:1.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4208
                self writeLong:count.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4209
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4210
                self error:'bad numbertype'
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4211
            ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4212
        ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4213
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4214
    address notNil ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4215
        (numberType == #long and:[count == 1]) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4216
            self writeLong:(valueArray at:1).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4217
            ^ self
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4218
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4219
        (numberType == #short and:[count <= 2]) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4220
            self writeShort:(valueArray at:1).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4221
            count == 2 ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4222
                self writeShort:(valueArray at:2).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4223
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4224
                self writeShort:0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4225
            ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4226
            ^ self
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4227
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4228
        (numberType == #byte and:[count <= 4]) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4229
            outStream nextPut:(valueArray at:1).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4230
            count > 1 ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4231
                outStream nextPut:(valueArray at:2).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4232
                count > 2 ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4233
                    outStream nextPut:(valueArray at:3).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4234
                    count > 3 ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4235
                        outStream nextPut:(valueArray at:4).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4236
                    ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4237
                        outStream nextPut:0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4238
                    ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4239
                ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4240
                    outStream nextPut:0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4241
                ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4242
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4243
                outStream nextPut:0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4244
            ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4245
            ^ self
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4246
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4247
        self writeLong:address.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4248
        ^ self
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4249
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4250
    numberType == #short ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4251
        self writeShort:value.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4252
        self writeShort:0
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4253
    ] ifFalse:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4254
        numberType == #long ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4255
            self writeLong:value
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4256
        ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4257
            numberType == #byte ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4258
                outStream nextPut:value.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4259
                outStream nextPut:0.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4260
                outStream nextPut:0.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4261
                outStream nextPut:0.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4262
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4263
                self error:'bad numbertype'
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4264
            ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4265
        ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4266
    ].
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4267
4011
0dfddf756e27 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4000
diff changeset
  4268
    "Modified: / 13-09-2017 / 10:08:52 / cg"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4269
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  4270
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4271
writeUncompressedBits
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4272
    "write bits as one or multiple strips"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4273
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4274
    |offs bytesPerRow nBytes
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4275
     h "{ Class: SmallInteger }"|
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4276
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4277
    nBytes := data size.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4278
    nBytes < 16rFFFF ifTrue:[
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  4279
        stripOffsets := Array with:(outStream position).
1703
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4280
        stripByteCounts := Array with:nBytes.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4281
        outStream nextPutBytes:nBytes from:data.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4282
        rowsPerStrip := height
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4283
    ] ifFalse:[
1703
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4284
        stripOffsets := Array basicNew:height.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4285
        bytesPerRow := nBytes // height.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4286
        stripByteCounts := (Array basicNew:height) atAllPut:bytesPerRow.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4287
1703
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4288
        offs := 1.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4289
        h := height.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4290
        1 to:h do:[:row |
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  4291
            stripOffsets at:row put:(outStream position).
1703
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4292
            outStream nextPutBytes:bytesPerRow from:data startingAt:offs.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4293
            offs := offs + bytesPerRow
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4294
        ].
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4295
        rowsPerStrip := 1
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4296
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4297
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4298
    'stripOffsets: ' print. stripOffsets printNewline.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4299
    'stripByteCounts: ' print. stripByteCounts printNewline.
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
! !
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4302
1805
93f557cbe600 category changes
Claus Gittinger <cg@exept.de>
parents: 1785
diff changeset
  4303
!TIFFReader methodsFor:'reading'!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4304
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4305
fromStream:aStream
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4306
    "read a stream containing a TIFF image.
3899
fd43372bf11d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3777
diff changeset
  4307
     Leave image description in instance variables.
fd43372bf11d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3777
diff changeset
  4308
     (i.e. to get the image, ask with image)."
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4309
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4310
    |char1 char2 version offset msb
4015
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4311
     bytesPerRow img moreIfds atEnd|
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4312
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4313
    inStream := aStream.
331
304f9c439efa allow reading from ByteArray-readStreams
Claus Gittinger <cg@exept.de>
parents: 329
diff changeset
  4314
    aStream binary.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4315
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4316
    char1 := aStream next.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4317
    char2 := aStream next.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4318
    
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4319
    "/ first two chars are either II (intel byte order) 
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4320
    "/ or MM (motorola byte orrder)
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4321
    (char1 ~~ char2) ifTrue:[
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  4322
        ^ self fileFormatError:'not a tiff file'.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4323
    ].
1953
90f3c42ef3c1 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1846
diff changeset
  4324
    (char1 == $I codePoint) ifTrue:[
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4325
        byteOrder := #lsb.
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4326
        msb := false.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4327
    ] ifFalse:[
1953
90f3c42ef3c1 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1846
diff changeset
  4328
        (char1 == $M codePoint) ifTrue:[
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4329
            byteOrder := #msb.
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4330
            msb := true.
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4331
        ] ifFalse:[
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  4332
            ^ self fileFormatError:'not a tiff file'.
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4333
        ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4334
    ].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4335
    
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4336
    version := aStream nextUnsignedInt16MSB:msb.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4337
    (version == 42) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4338
        isBigTiff := false.
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4339
    ] ifFalse:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4340
       (version == 43) ifTrue:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4341
            |byteSizeOfOffsets always0|
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4342
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4343
            "/ 43 is the proposed bigtiff format
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4344
            isBigTiff := true.
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4345
            byteSizeOfOffsets := aStream nextUnsignedInt16MSB:msb.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4346
            byteSizeOfOffsets == 8 ifFalse:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4347
                ^ self fileFormatError:'version of bigtiff-file not supported'.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4348
            ].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4349
            always0 := aStream nextUnsignedInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4350
            always0 == 0 ifFalse:[
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4351
                ^ self fileFormatError:'version of bigtiff-file not supported'.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4352
            ].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4353
        ] ifFalse:[    
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4354
            ^ self fileFormatError:'version of tiff-file not supported'.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4355
        ].
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4356
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4357
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4358
    imageSequence := ImageSequence new.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4359
    isDNGImage := false.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4360
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4361
    isBigTiff ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4362
        offset := aStream nextUnsignedInt32MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4363
    ] ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4364
        offset := aStream nextUnsignedInt64MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4365
    ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4366
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4367
    [ offset ~~ 0 ] whileTrue:[    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4368
        Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4369
            Logger info:'------------------ reading image #%1 ------------------' with:imageSequence size+1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4370
        ].    
4015
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4371
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4372
        "/ no more images, if tagData immediately follows (i.e. position == offset)
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4373
        atEnd := (aStream position == offset).
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4374
        atEnd := false.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4375
        
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4376
        aStream position:offset.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4377
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4378
        "setup default values"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4379
        metaData := TIFFMetaData new.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4380
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4381
        compression := 1. "none"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4382
        fillOrder := #msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4383
        planarConfiguration := PLANARCONFIG_CONTIG.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4384
        photometric := nil.
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4385
        bitsPerSample := nil.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4386
        samplesPerPixel := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4387
        width := height := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4388
        stripOffsets := stripByteCounts := rowsPerStrip := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4389
        "resolutionUnit := 2."
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4390
        predictor := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4391
        group3options := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4392
        orientation := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4393
        subFileType := subIfds := nil.
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4394
        sampleFormat := SAMPLEFORMAT_UINT.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4395
        minSampleValue := maxSampleValue := nil.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4396
        tileWidth := tileLength := tileOffsets := tileByteCounts := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4397
        
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4398
        self readTagsFrom:aStream.
4015
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4399
        
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4400
        "/ read the next offset now,
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4401
        "/ because the stream's position will be changed when the image-data is read
4015
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4402
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4403
        (stripOffsets at:1) == aStream position ifTrue:[
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4404
            offset := 0
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4405
        ] ifFalse:[
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4406
            isBigTiff ifFalse:[
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4407
                offset := aStream nextUnsignedInt32MSB:msb.
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4408
            ] ifTrue:[
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4409
                offset := aStream nextUnsignedInt64MSB:msb.
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4410
            ].    
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4411
        ].
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4412
        
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4413
        "check for required tags"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4414
        width isNil ifTrue:[ ^ self fileFormatError:'missing width tag' ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4415
        height isNil ifTrue:[ ^ self fileFormatError:'missing length tag' ].
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4416
        bitsPerSample isNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4417
            bitsPerSample := Array new:samplesPerPixel withAll:1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4418
        ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4419
        
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4420
        photometric isNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4421
            "/ try to repair
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4422
            bitsPerSample sum == 1 ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4423
                photometric := #whiteIs0.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4424
            ] ifFalse:[    
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4425
                ^ self fileFormatError:'missing photometric tag' 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4426
            ].
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4427
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4428
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4429
        "given all the information, read the bits"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4430
        tileWidth notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4431
            tileOffsets := tileOffsets ? stripOffsets.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4432
            tileByteCounts := tileByteCounts ? stripByteCounts.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4433
            (tileOffsets notNil 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4434
                and:[tileLength notNil
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4435
                and:[tileByteCounts notNil ]]
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4436
            ) ifFalse:[    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4437
                ^ self fileFormatError:'missing stripOffsets (or tileOffsets)'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4438
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4439
            self reportDimension.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4440
            self readTiledTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4441
        ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4442
            stripByteCounts isNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4443
                stripOffsets size == 1 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4444
                    stripByteCounts := Array with:(self bitsPerPixel // 8) * width * height
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4445
                ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4446
                    ^ self fileFormatError:'missing stripByteCounts'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4447
                ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4448
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4449
            rowsPerStrip isNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4450
                rowsPerStrip := height
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4451
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4452
            self reportDimension.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4453
            self readTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4454
        ].
3693
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  4455
    
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4456
        orientation notNil ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4457
            orientation == #unsupported ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4458
                'TIFFReader [warning]: unsupported orientation' errorPrintCR
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4459
            ] ifFalse:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4460
                orientation == #vFlip ifTrue:[
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4461
                    |tmp offset1 offset2|
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4462
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4463
                    "/ reverse rows to top-to bottom 
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4464
                    "/ (oops - depends on side-effecting the data array)
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4465
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4466
                    bytesPerRow := self bytesPerRow.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4467
                    tmp := ByteArray new:bytesPerRow.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4468
                    offset1 := 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4469
                    offset2 := (height-1)*bytesPerRow + 1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4470
                    0 to:((height-1)//2) do:[:row |
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4471
                        tmp replaceFrom:1 to:bytesPerRow with:data startingAt:offset1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4472
                        data replaceFrom:offset1 to:(offset1+bytesPerRow-1) with:data startingAt:offset2.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4473
                        data replaceFrom:offset2 to:(offset2+bytesPerRow-1) with:tmp startingAt:1.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4474
                        offset1 := offset1 + bytesPerRow.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4475
                        offset2 := offset2 - bytesPerRow.
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4476
                    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4477
                ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4478
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4479
        ].
3986
a71704884650 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3985
diff changeset
  4480
        
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4481
        "/ fixup photoetric
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4482
        photometric == #rgb ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4483
            samplesPerPixel == 4 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4484
                photometric := #rgba
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
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4487
        
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4488
        img := self makeImage.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4489
        img imageSequence:imageSequence.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4490
        imageSequence add:(ImageFrame new image:img).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4491
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4492
        offset == 0 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4493
            moreIfds isNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4494
                subIfds notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4495
                    (isDNGImage not or:[loadFullResolutionImage == true]) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4496
                        moreIfds := OrderedCollection withAll:subIfds.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4497
                        subIfds := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4498
                    ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4499
                        Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4500
                            Logger info:'skip high resolution images (use loadFullResolutionImage is false)'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4501
                        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4502
                    ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4503
                ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4504
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4505
            moreIfds notEmptyOrNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4506
                offset := moreIfds removeFirst
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4507
            ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4508
        ].    
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4509
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4510
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4511
    imageSequence size > 1 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4512
        Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4513
            Logger info:'read %1 images' with:imageSequence size
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4514
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4515
    ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4516
    ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4517
4015
7f7b255c15c2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  4518
    "Modified: / 17-09-2017 / 13:06:10 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4519
! !
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4520
1805
93f557cbe600 category changes
Claus Gittinger <cg@exept.de>
parents: 1785
diff changeset
  4521
!TIFFReader methodsFor:'writing'!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4522
1571
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4523
save:image onStream:aStream
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4524
    "save image as (uncompressed) TIFF file on aFileName"
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4525
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4526
    |pos1 pos indicator|
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4527
1078
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4528
    image mask notNil ifTrue:[
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4529
        Image informationLostQuerySignal
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4530
            raiseWith:image
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4531
            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
  4532
    ].
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4533
1571
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4534
    outStream := aStream.
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4535
    outStream binary.
461
bacef118f54a more signals to be raised if anything happens during
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
  4536
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4537
    "save as msb"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4538
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4539
    byteOrder := #msb.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4540
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4541
    byteOrder := #lsb.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4542
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4543
    fillOrder := #msb.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4544
    width := image width.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4545
    height := image height.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4546
    photometric := image photometric.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4547
    samplesPerPixel := image samplesPerPixel.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4548
    bitsPerSample := image bitsPerSample.
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  4549
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4550
    colorMap := image colorMap.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4551
    planarConfiguration := PLANARCONFIG_CONTIG.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4552
    compression := 1.   "none"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4553
    data := image bits.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4554
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4555
    currentOffset := 0.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4556
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4557
    (byteOrder == #msb) ifTrue:[
1953
90f3c42ef3c1 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1846
diff changeset
  4558
        indicator := $M codePoint.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4559
    ] ifFalse:[
1953
90f3c42ef3c1 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1846
diff changeset
  4560
        indicator := $I codePoint.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4561
    ].
1571
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4562
    outStream nextPut:indicator; nextPut:indicator.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4563
    currentOffset := currentOffset + 2.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4564
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4565
    self writeShort:42.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4566
    currentOffset := currentOffset + 2.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4567
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4568
    pos1 := outStream position.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4569
    self writeLong:0.           "start of tags - filled in later"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4570
    currentOffset := currentOffset + 4.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4571
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4572
    "output strips"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4573
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4574
    self writeUncompressedBits. "this outputs bits as strips, sets stripOffsets and stripByteCounts"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4575
    self writeStripOffsets.     "this outputs strip offsets, sets stripOffsetsPos"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4576
    self writeStripByteCounts.  "this outputs strip bytecounts, sets stripByteCountPos"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4577
    self writeBitsPerSample.    "this outputs bitsPerSample, sets bitsPerSamplePos"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4578
    photometric == #palette ifTrue:[
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4579
        self writeColorMap      "this outputs colorMap, sets colorMapPos"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4580
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4581
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  4582
    pos := outStream position.        "backpatch tag offset"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4583
    outStream position:pos1.
1704
1526c7b84920 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  4584
    self writeLong:pos.                     "fill in tag offset"
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  4585
    outStream position:pos.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4586
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4587
('patch tag offset at: ', (pos1 printStringRadix:16) , ' to ',
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4588
                         (pos printStringRadix:16)) printNewline.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4589
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4590
    "output tag data"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4591
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4592
    photometric == #palette ifTrue:[
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4593
        self writeShort:11.  "11 tags"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4594
    ] ifFalse:[
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4595
        self writeShort:10.  "10 tags"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4596
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4597
    self writeTag:256.               "image width"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4598
    self writeTag:257.               "image height"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4599
    self writeTag:258.               "bits per sample"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4600
    self writeTag:259.               "compression"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4601
    self writeTag:262.               "photometric"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4602
    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
  4603
    self writeTag:277.               "samplesPerPixel"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4604
    self writeTag:278.               "rowsPerStrip"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4605
    self writeTag:279.               "strip byte counts"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4606
    self writeTag:284.               "planarconfig"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4607
    photometric == #palette ifTrue:[
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4608
        self writeTag:320            "colorMap"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4609
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4610
    self writeLong:0.                "end of tags mark"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4611
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4612
    "Modified: / 27-08-2017 / 13:36:35 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4613
! !
30
9638bc775850 *** empty log message ***
claus
parents: 28
diff changeset
  4614
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4615
!TIFFReader class methodsFor:'documentation'!
30
9638bc775850 *** empty log message ***
claus
parents: 28
diff changeset
  4616
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4617
version
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  4618
    ^ '$Header$'
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  4619
!
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  4620
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  4621
version_CVS
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  4622
    ^ '$Header$'
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4623
! !
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  4624
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  4625
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4626
TIFFReader initialize!