TIFFReader.st
author Claus Gittinger <cg@exept.de>
Sun, 27 Aug 2017 21:36:17 +0200
changeset 3985 3d9f0b1a06d0
parent 3984 e533a09c2c1d
child 3986 a71704884650
permissions -rw-r--r--
#BUGFIX by cg class: TIFFReader changed: #decodeTiffTag:numberType:length: #readPackbitsTiffImageData #readTiledUncompressedTiffImageData
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
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    38
		FILETYPE_MASK_PAGE FILETYPE_MASK_MASK'
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
    39
	poolDictionaries:''
1745
4fa0fad2a463 code cleanup (colorMap handling)
Claus Gittinger <cg@exept.de>
parents: 1712
diff changeset
    40
	category:'Graphics-Images-Readers'
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    41
!
3f9277473954 Initial revision
claus
parents:
diff changeset
    42
3693
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    43
Dictionary subclass:#TIFFMetaData
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    44
	instanceVariableNames:''
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    45
	classVariableNames:''
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    46
	poolDictionaries:''
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    47
	privateIn:TIFFReader
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    48
!
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
    49
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
    50
!TIFFReader class methodsFor:'documentation'!
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    51
21
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    52
copyright
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    53
"
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    54
 COPYRIGHT (c) 1991 by Claus Gittinger
28
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
    55
	      All Rights Reserved
21
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    56
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    57
 This software is furnished under a license and may be used
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    58
 only in accordance with the terms of that license and with the
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    59
 inclusion of the above copyright notice.   This software may not
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    60
 be provided or otherwise made available to, or used by, any
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    61
 other person.  No title to or ownership of the software is
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    62
 hereby transferred.
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    63
"
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    64
!
66b31c91177f *** empty log message ***
claus
parents: 19
diff changeset
    65
0
3f9277473954 Initial revision
claus
parents:
diff changeset
    66
documentation
3f9277473954 Initial revision
claus
parents:
diff changeset
    67
"
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    68
    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
    69
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    70
    Implemented & Missing Features:
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
    71
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    72
      - Only single image files are supported.
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    73
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    74
      - 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
    75
        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
    76
        although the alpha channel is currently not supported and ignored.
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    77
        It supports reading of uncompressed, LZW, packbits and CCITT-G3 compressed images
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    78
        JPEG and many other formats are currently not implemented.
30
9638bc775850 *** empty log message ***
claus
parents: 28
diff changeset
    79
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    80
      - Only writing of uncompressed images is currently implemented.
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    81
        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
    82
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    83
      - bigTiff is supported
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
    84
      
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
    85
      - some dng tags are supported
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    86
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    87
    More formats will come... (will they ever be needed?)
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
    88
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    89
    TODO (?): 
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    90
        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
    91
        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
    92
        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
    93
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    94
        Late note: 
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    95
            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
    96
            w.r.t. memory leaks, non-reentrancy, non-interruptability etc.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    97
            (we recently fixed a malloc-non-reentrant bug for some architecture...)
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
    98
            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
    99
220
4106d9ce7e02 documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   100
    [author:]
4106d9ce7e02 documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   101
        Claus Gittinger
4106d9ce7e02 documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
   102
195
7975a2c4a890 commentary
Claus Gittinger <cg@exept.de>
parents: 192
diff changeset
   103
    [See also:]
234
b6352d13e792 xrefs in documentation
Claus Gittinger <cg@exept.de>
parents: 220
diff changeset
   104
        Image Form Icon
197
50812e81d86f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 195
diff changeset
   105
        BlitImageReader FaceReader GIFReader JPEGReader PBMReader PCXReader 
210
5405de794686 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 209
diff changeset
   106
        ST80FormReader SunRasterReader TargaReader WindowsIconReader 
209
840ddcf12904 commentary
Claus Gittinger <cg@exept.de>
parents: 198
diff changeset
   107
        XBMReader XPMReader XWDReader 
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   108
"
3f9277473954 Initial revision
claus
parents:
diff changeset
   109
! !
3f9277473954 Initial revision
claus
parents:
diff changeset
   110
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   111
!TIFFReader class methodsFor:'initialization'!
28
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
   112
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
   113
initialize
198
6d76856aaa80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 197
diff changeset
   114
    "install myself in the Image classes fileFormat table
398
aef700d15416 new suffix-table
Claus Gittinger <cg@exept.de>
parents: 393
diff changeset
   115
     for the `.tiff' and `.tif' extensions."
198
6d76856aaa80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 197
diff changeset
   116
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   117
    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
   118
    MIMETypes defineImageType:nil          suffix:'tiff' reader:self.
198
6d76856aaa80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 197
diff changeset
   119
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   120
    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
   121
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   122
    COMPRESSION_NONE            := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   123
    COMPRESSION_CCITTRLE        := 2.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   124
    COMPRESSION_CCITTFAX3       := 3.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   125
    COMPRESSION_CCITTFAX4       := 4.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   126
    COMPRESSION_LZW             := 5.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   127
    COMPRESSION_OJPEG           := 6. "/ (old style jpeg)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   128
    COMPRESSION_JPEG            := 7. "/ (new style jpeg)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   129
    COMPRESSION_ADOBE_DEFLATE   := 8.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   130
    COMPRESSION_JBIG_T85        := 9.  "/ (ITU-T T85)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   131
    COMPRESSION_JBIG_T43        := 10. "/ (ITU-T T43)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   132
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   133
    COMPRESSION_NEXT            := 32766. "/ (NeXT 2-bit encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   134
    COMPRESSION_CCITTRLEW       := 32771.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   135
    COMPRESSION_PACKBITS        := 32773.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   136
    COMPRESSION_THUNDERSCAN     := 32809. "/ (ThunderScan 4-bit encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   137
    COMPRESSION_NEXT_JPEG       := 32865. "/ (NeXT jpeg encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   138
    COMPRESSION_IT8CTPAD        := 32895.  
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   139
    COMPRESSION_IT8LW           := 32896.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   140
    COMPRESSION_IT8MP           := 32897. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   141
    COMPRESSION_IT8BL           := 32898. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   142
    COMPRESSION_PIXARFILM       := 32908.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   143
    COMPRESSION_PIXARLOG        := 32909. "/ (Pixar companded 11-bit ZIP encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   144
    COMPRESSION_DEFLATE         := 32946. "/ (PKZIP-style Deflate encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   145
    COMPRESSION_DCS             := 32947. "/ (kodac)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   146
    COMPRESSION_JBIG            := 34661.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   147
    COMPRESSION_SGILOG          := 34676. "/ (SGI 32-bit Log Luminance encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   148
    COMPRESSION_SGILOG24        := 34677. "/ (SGI 24-bit Log Luminance encoding)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   149
    COMPRESSION_JPEG2000        := 34712. "/ JPEG2000
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   150
    COMPRESSION_NIKON_NEF       := 34713.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   151
    COMPRESSION_JBIG2           := 34715.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   152
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   153
    SAMPLEFORMAT_UINT           := 1.       "/ !!unsigned integer data 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   154
    SAMPLEFORMAT_INT            := 2.       "/ !!signed integer data 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   155
    SAMPLEFORMAT_IEEEFP         := 3.       "/ !!IEEE floating point data 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   156
    SAMPLEFORMAT_VOID           := 4.       "/ !!untyped data 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   157
    SAMPLEFORMAT_COMPLEXINT     := 5.       "/ !!complex signed int 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   158
    SAMPLEFORMAT_COMPLEXIEEEFP  := 6.       "/ !!complex ieee floating 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   159
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   160
    PLANARCONFIG_CONTIG         := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   161
    PLANARCONFIG_SEPARATE       := 2.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   162
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   163
    FILETYPE_MASK_REDUCEDIMAGE  := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   164
    FILETYPE_MASK_PAGE          := 2.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   165
    FILETYPE_MASK_MASK          := 4. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   166
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   167
"/    TYPE_NOTYPE := 0.           "/ placeholder 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   168
"/    TYPE_BYTE   := 1.           "/ 8-bit unsigned integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   169
"/    TYPE_ASCII  := 2.           "/ 8-bit bytes w/ last byte null 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   170
"/    TYPE_SHORT  := 3.           "/ 16-bit unsigned integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   171
"/    TYPE_LONG   := 4.           "/ 32-bit unsigned integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   172
"/    TYPE_RATIONAL := 5.         "/ 64-bit unsigned fraction 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   173
"/    TYPE_SBYTE  := 6.           "/ !!8-bit signed integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   174
"/    TYPE_UNDEFINED  := 7.       "/ !!8-bit untyped data 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   175
"/    TYPE_SSHORT     := 8.       "/ !!16-bit signed integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   176
"/    TYPE_SLONG      := 9.       "/ !!32-bit signed integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   177
"/    TYPE_SRATIONAL  := 10.      "/ !!64-bit signed fraction 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   178
"/    TYPE_FLOAT      := 11.      "/ !!32-bit IEEE floating point 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   179
"/    TYPE_DOUBLE     := 12.      "/ !!64-bit IEEE floating point 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   180
"/    TYPE_IFD        := 13.      "/ %32-bit unsigned integer (offset) 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   181
"/    TYPE_LONG8      := 16.      "/ BigTIFF 64-bit unsigned integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   182
"/    TYPE_SLONG8     := 17.      "/ BigTIFF 64-bit signed integer 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   183
"/    TYPE_IFD8       := 18.      "/ BigTIFF 64-bit unsigned integer (offset) 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   184
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   185
    "/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   186
    "/ TIFF tags
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   187
    "/
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
"/    #define TIFFTAG_SUBFILETYPE             254     /* subfile data descriptor */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   190
"/    #define     FILETYPE_REDUCEDIMAGE       0x1     /* reduced resolution version */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   191
"/    #define     FILETYPE_PAGE               0x2     /* one page of many */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   192
"/    #define     FILETYPE_MASK               0x4     /* transparency mask */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   193
"/    #define TIFFTAG_OSUBFILETYPE            255     /* +kind of data in subfile */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   194
"/    #define     OFILETYPE_IMAGE             1       /* full resolution image data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   195
"/    #define     OFILETYPE_REDUCEDIMAGE      2       /* reduced size image data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   196
"/    #define     OFILETYPE_PAGE              3       /* one page of many */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   197
"/    #define TIFFTAG_IMAGEWIDTH              256     /* image width in pixels */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   198
"/    #define TIFFTAG_IMAGELENGTH             257     /* image height in pixels */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   199
"/    #define TIFFTAG_BITSPERSAMPLE           258     /* bits per channel (sample) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   200
"/    #define TIFFTAG_COMPRESSION             259     /* data compression technique */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   201
"/    #define     COMPRESSION_NONE            1       /* dump mode */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   202
"/    #define     COMPRESSION_CCITTRLE        2       /* CCITT modified Huffman RLE */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   203
"/    #define     COMPRESSION_CCITTFAX3       3       /* CCITT Group 3 fax encoding */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   204
"/    #define     COMPRESSION_CCITT_T4        3       /* CCITT T.4 (TIFF 6 name) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   205
"/    #define     COMPRESSION_CCITTFAX4       4       /* CCITT Group 4 fax encoding */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   206
"/    #define     COMPRESSION_CCITT_T6        4       /* CCITT T.6 (TIFF 6 name) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   207
"/    #define     COMPRESSION_LZW             5       /* Lempel-Ziv  & Welch */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   208
"/    #define     COMPRESSION_OJPEG           6       /* !!6.0 JPEG */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   209
"/    #define     COMPRESSION_JPEG            7       /* %JPEG DCT compression */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   210
"/    #define     COMPRESSION_T85                     9       /* !!TIFF/FX T.85 JBIG compression */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   211
"/    #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
   212
"/    #define     COMPRESSION_NEXT            32766   /* NeXT 2-bit RLE */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   213
"/    #define     COMPRESSION_CCITTRLEW       32771   /* #1 w/ word alignment */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   214
"/    #define     COMPRESSION_PACKBITS        32773   /* Macintosh RLE */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   215
"/    #define     COMPRESSION_THUNDERSCAN     32809   /* ThunderScan RLE */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   216
"/    /* 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
   217
"/    #define     COMPRESSION_IT8CTPAD        32895   /* IT8 CT w/padding */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   218
"/    #define     COMPRESSION_IT8LW           32896   /* IT8 Linework RLE */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   219
"/    #define     COMPRESSION_IT8MP           32897   /* IT8 Monochrome picture */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   220
"/    #define     COMPRESSION_IT8BL           32898   /* IT8 Binary line art */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   221
"/    /* compression codes 32908-32911 are reserved for Pixar */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   222
"/    #define     COMPRESSION_PIXARFILM       32908   /* Pixar companded 10bit LZW */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   223
"/    #define     COMPRESSION_PIXARLOG        32909   /* Pixar companded 11bit ZIP */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   224
"/    #define     COMPRESSION_DEFLATE         32946   /* Deflate compression */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   225
"/    #define     COMPRESSION_ADOBE_DEFLATE   8       /* Deflate compression,
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   226
"/                                                       as recognized by Adobe */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   227
"/    /* compression code 32947 is reserved for Oceana Matrix <dev@oceana.com> */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   228
"/    #define     COMPRESSION_DCS             32947   /* Kodak DCS encoding */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   229
"/    #define     COMPRESSION_JBIG            34661   /* ISO JBIG */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   230
"/    #define     COMPRESSION_SGILOG          34676   /* SGI Log Luminance RLE */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   231
"/    #define     COMPRESSION_SGILOG24        34677   /* SGI Log 24-bit packed */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   232
"/    #define     COMPRESSION_JP2000          34712   /* Leadtools JPEG2000 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   233
"/    #define     COMPRESSION_LZMA            34925   /* LZMA2 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   234
"/    #define TIFFTAG_PHOTOMETRIC             262     /* photometric interpretation */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   235
"/    #define     PHOTOMETRIC_MINISWHITE      0       /* min value is white */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   236
"/    #define     PHOTOMETRIC_MINISBLACK      1       /* min value is black */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   237
"/    #define     PHOTOMETRIC_RGB             2       /* RGB color model */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   238
"/    #define     PHOTOMETRIC_PALETTE         3       /* color map indexed */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   239
"/    #define     PHOTOMETRIC_MASK            4       /* $holdout mask */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   240
"/    #define     PHOTOMETRIC_SEPARATED       5       /* !!color separations */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   241
"/    #define     PHOTOMETRIC_YCBCR           6       /* !!CCIR 601 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   242
"/    #define     PHOTOMETRIC_CIELAB          8       /* !!1976 CIE L*a*b* */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   243
"/    #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
   244
"/    #define     PHOTOMETRIC_ITULAB          10      /* ITU L*a*b* */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   245
"/    #define     PHOTOMETRIC_CFA             32803   /* color filter array */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   246
"/    #define     PHOTOMETRIC_LOGL            32844   /* CIE Log2(L) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   247
"/    #define     PHOTOMETRIC_LOGLUV          32845   /* CIE Log2(L) (u',v') */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   248
"/    #define TIFFTAG_THRESHHOLDING           263     /* +thresholding used on data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   249
"/    #define     THRESHHOLD_BILEVEL          1       /* b&w art scan */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   250
"/    #define     THRESHHOLD_HALFTONE         2       /* or dithered scan */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   251
"/    #define     THRESHHOLD_ERRORDIFFUSE     3       /* usually floyd-steinberg */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   252
"/    #define TIFFTAG_CELLWIDTH               264     /* +dithering matrix width */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   253
"/    #define TIFFTAG_CELLLENGTH              265     /* +dithering matrix height */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   254
"/    #define TIFFTAG_FILLORDER               266     /* data order within a byte */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   255
"/    #define     FILLORDER_MSB2LSB           1       /* most significant -> least */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   256
"/    #define     FILLORDER_LSB2MSB           2       /* least significant -> most */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   257
"/    #define TIFFTAG_DOCUMENTNAME            269     /* name of doc. image is from */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   258
"/    #define TIFFTAG_IMAGEDESCRIPTION        270     /* info about image */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   259
"/    #define TIFFTAG_MAKE                    271     /* scanner manufacturer name */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   260
"/    #define TIFFTAG_MODEL                   272     /* scanner model name/number */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   261
"/    #define TIFFTAG_STRIPOFFSETS            273     /* offsets to data strips */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   262
"/    #define TIFFTAG_ORIENTATION             274     /* +image orientation */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   263
"/    #define     ORIENTATION_TOPLEFT         1       /* row 0 top, col 0 lhs */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   264
"/    #define     ORIENTATION_TOPRIGHT        2       /* row 0 top, col 0 rhs */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   265
"/    #define     ORIENTATION_BOTRIGHT        3       /* row 0 bottom, col 0 rhs */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   266
"/    #define     ORIENTATION_BOTLEFT         4       /* row 0 bottom, col 0 lhs */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   267
"/    #define     ORIENTATION_LEFTTOP         5       /* row 0 lhs, col 0 top */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   268
"/    #define     ORIENTATION_RIGHTTOP        6       /* row 0 rhs, col 0 top */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   269
"/    #define     ORIENTATION_RIGHTBOT        7       /* row 0 rhs, col 0 bottom */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   270
"/    #define     ORIENTATION_LEFTBOT         8       /* row 0 lhs, col 0 bottom */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   271
"/    #define TIFFTAG_SAMPLESPERPIXEL         277     /* samples per pixel */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   272
"/    #define TIFFTAG_ROWSPERSTRIP            278     /* rows per strip of data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   273
"/    #define TIFFTAG_STRIPBYTECOUNTS         279     /* bytes counts for strips */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   274
"/    #define TIFFTAG_MINSAMPLEVALUE          280     /* +minimum sample value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   275
"/    #define TIFFTAG_MAXSAMPLEVALUE          281     /* +maximum sample value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   276
"/    #define TIFFTAG_XRESOLUTION             282     /* pixels/resolution in x */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   277
"/    #define TIFFTAG_YRESOLUTION             283     /* pixels/resolution in y */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   278
"/    #define TIFFTAG_PLANARCONFIG            284     /* storage organization */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   279
"/    #define     PLANARCONFIG_CONTIG         1       /* single image plane */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   280
"/    #define     PLANARCONFIG_SEPARATE       2       /* separate planes of data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   281
"/    #define TIFFTAG_PAGENAME                285     /* page name image is from */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   282
"/    #define TIFFTAG_XPOSITION               286     /* x page offset of image lhs */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   283
"/    #define TIFFTAG_YPOSITION               287     /* y page offset of image lhs */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   284
"/    #define TIFFTAG_FREEOFFSETS             288     /* +byte offset to free block */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   285
"/    #define TIFFTAG_FREEBYTECOUNTS          289     /* +sizes of free blocks */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   286
"/    #define TIFFTAG_GRAYRESPONSEUNIT        290     /* $gray scale curve accuracy */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   287
"/    #define     GRAYRESPONSEUNIT_10S        1       /* tenths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   288
"/    #define     GRAYRESPONSEUNIT_100S       2       /* hundredths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   289
"/    #define     GRAYRESPONSEUNIT_1000S      3       /* thousandths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   290
"/    #define     GRAYRESPONSEUNIT_10000S     4       /* ten-thousandths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   291
"/    #define     GRAYRESPONSEUNIT_100000S    5       /* hundred-thousandths */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   292
"/    #define TIFFTAG_GRAYRESPONSECURVE       291     /* $gray scale response curve */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   293
"/    #define TIFFTAG_GROUP3OPTIONS           292     /* 32 flag bits */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   294
"/    #define TIFFTAG_T4OPTIONS               292     /* TIFF 6.0 proper name alias */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   295
"/    #define     GROUP3OPT_2DENCODING        0x1     /* 2-dimensional coding */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   296
"/    #define     GROUP3OPT_UNCOMPRESSED      0x2     /* data not compressed */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   297
"/    #define     GROUP3OPT_FILLBITS          0x4     /* fill to byte boundary */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   298
"/    #define TIFFTAG_GROUP4OPTIONS           293     /* 32 flag bits */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   299
"/    #define TIFFTAG_T6OPTIONS               293     /* TIFF 6.0 proper name */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   300
"/    #define     GROUP4OPT_UNCOMPRESSED      0x2     /* data not compressed */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   301
"/    #define TIFFTAG_RESOLUTIONUNIT          296     /* units of resolutions */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   302
"/    #define     RESUNIT_NONE                1       /* no meaningful units */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   303
"/    #define     RESUNIT_INCH                2       /* english */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   304
"/    #define     RESUNIT_CENTIMETER          3       /* metric */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   305
"/    #define TIFFTAG_PAGENUMBER              297     /* page numbers of multi-page */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   306
"/    #define TIFFTAG_COLORRESPONSEUNIT       300     /* $color curve accuracy */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   307
"/    #define     COLORRESPONSEUNIT_10S       1       /* tenths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   308
"/    #define     COLORRESPONSEUNIT_100S      2       /* hundredths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   309
"/    #define     COLORRESPONSEUNIT_1000S     3       /* thousandths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   310
"/    #define     COLORRESPONSEUNIT_10000S    4       /* ten-thousandths of a unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   311
"/    #define     COLORRESPONSEUNIT_100000S   5       /* hundred-thousandths */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   312
"/    #define TIFFTAG_TRANSFERFUNCTION        301     /* !!colorimetry info */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   313
"/    #define TIFFTAG_SOFTWARE                305     /* name & release */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   314
"/    #define TIFFTAG_DATETIME                306     /* creation date and time */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   315
"/    #define TIFFTAG_ARTIST                  315     /* creator of image */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   316
"/    #define TIFFTAG_HOSTCOMPUTER            316     /* machine where created */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   317
"/    #define TIFFTAG_PREDICTOR               317     /* prediction scheme w/ LZW */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   318
"/    #define     PREDICTOR_NONE              1       /* no prediction scheme used */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   319
"/    #define     PREDICTOR_HORIZONTAL        2       /* horizontal differencing */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   320
"/    #define     PREDICTOR_FLOATINGPOINT     3       /* floating point predictor */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   321
"/    #define TIFFTAG_WHITEPOINT              318     /* image white point */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   322
"/    #define TIFFTAG_PRIMARYCHROMATICITIES   319     /* !!primary chromaticities */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   323
"/    #define TIFFTAG_COLORMAP                320     /* RGB map for palette image */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   324
"/    #define TIFFTAG_HALFTONEHINTS           321     /* !!highlight+shadow info */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   325
"/    #define TIFFTAG_TILEWIDTH               322     /* !!tile width in pixels */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   326
"/    #define TIFFTAG_TILELENGTH              323     /* !!tile height in pixels */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   327
"/    #define TIFFTAG_TILEOFFSETS             324     /* !!offsets to data tiles */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   328
"/    #define TIFFTAG_TILEBYTECOUNTS          325     /* !!byte counts for tiles */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   329
"/    #define TIFFTAG_BADFAXLINES             326     /* lines w/ wrong pixel count */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   330
"/    #define TIFFTAG_CLEANFAXDATA            327     /* regenerated line info */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   331
"/    #define     CLEANFAXDATA_CLEAN          0       /* no errors detected */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   332
"/    #define     CLEANFAXDATA_REGENERATED    1       /* receiver regenerated lines */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   333
"/    #define     CLEANFAXDATA_UNCLEAN        2       /* uncorrected errors exist */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   334
"/    #define TIFFTAG_CONSECUTIVEBADFAXLINES  328     /* max consecutive bad lines */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   335
"/    #define TIFFTAG_SUBIFD                  330     /* subimage descriptors */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   336
"/    #define TIFFTAG_INKSET                  332     /* !!inks in separated image */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   337
"/    #define     INKSET_CMYK                 1       /* !!cyan-magenta-yellow-black color */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   338
"/    #define     INKSET_MULTIINK             2       /* !!multi-ink or hi-fi color */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   339
"/    #define TIFFTAG_INKNAMES                333     /* !!ascii names of inks */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   340
"/    #define TIFFTAG_NUMBEROFINKS            334     /* !!number of inks */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   341
"/    #define TIFFTAG_DOTRANGE                336     /* !!0% and 100% dot codes */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   342
"/    #define TIFFTAG_TARGETPRINTER           337     /* !!separation target */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   343
"/    #define TIFFTAG_EXTRASAMPLES            338     /* !!info about extra samples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   344
"/    #define     EXTRASAMPLE_UNSPECIFIED     0       /* !!unspecified data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   345
"/    #define     EXTRASAMPLE_ASSOCALPHA      1       /* !!associated alpha data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   346
"/    #define     EXTRASAMPLE_UNASSALPHA      2       /* !!unassociated alpha data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   347
"/    #define TIFFTAG_SAMPLEFORMAT            339     /* !!data sample format */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   348
"/    #define     SAMPLEFORMAT_UINT           1       /* !!unsigned integer data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   349
"/    #define     SAMPLEFORMAT_INT            2       /* !!signed integer data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   350
"/    #define     SAMPLEFORMAT_IEEEFP         3       /* !!IEEE floating point data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   351
"/    #define     SAMPLEFORMAT_VOID           4       /* !!untyped data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   352
"/    #define     SAMPLEFORMAT_COMPLEXINT     5       /* !!complex signed int */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   353
"/    #define     SAMPLEFORMAT_COMPLEXIEEEFP  6       /* !!complex ieee floating */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   354
"/    #define TIFFTAG_SMINSAMPLEVALUE         340     /* !!variable MinSampleValue */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   355
"/    #define TIFFTAG_SMAXSAMPLEVALUE         341     /* !!variable MaxSampleValue */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   356
"/    #define TIFFTAG_CLIPPATH                343     /* %ClipPath
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   357
"/                                                       [Adobe TIFF technote 2] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   358
"/    #define TIFFTAG_XCLIPPATHUNITS          344     /* %XClipPathUnits
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   359
"/                                                       [Adobe TIFF technote 2] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   360
"/    #define TIFFTAG_YCLIPPATHUNITS          345     /* %YClipPathUnits
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_INDEXED                 346     /* %Indexed
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   363
"/                                                       [Adobe TIFF Technote 3] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   364
"/    #define TIFFTAG_JPEGTABLES              347     /* %JPEG table stream */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   365
"/    #define TIFFTAG_OPIPROXY                351     /* %OPI Proxy [Adobe TIFF technote] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   366
"/    /* Tags 400-435 are from the TIFF/FX spec */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   367
"/    #define TIFFTAG_GLOBALPARAMETERSIFD     400     /* !! */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   368
"/    #define TIFFTAG_PROFILETYPE                     401     /* !! */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   369
"/    #define     PROFILETYPE_UNSPECIFIED     0       /* !! */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   370
"/    #define     PROFILETYPE_G3_FAX          1       /* !! */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   371
"/    #define TIFFTAG_FAXPROFILE                      402     /* !! */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   372
"/    #define     FAXPROFILE_S                        1       /* !!TIFF/FX FAX profile S */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   373
"/    #define     FAXPROFILE_F                        2       /* !!TIFF/FX FAX profile F */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   374
"/    #define     FAXPROFILE_J                        3       /* !!TIFF/FX FAX profile J */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   375
"/    #define     FAXPROFILE_C                        4       /* !!TIFF/FX FAX profile C */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   376
"/    #define     FAXPROFILE_L                        5       /* !!TIFF/FX FAX profile L */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   377
"/    #define     FAXPROFILE_M                        6       /* !!TIFF/FX FAX profile LM */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   378
"/    #define TIFFTAG_CODINGMETHODS           403     /* !!TIFF/FX coding methods */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   379
"/    #define     CODINGMETHODS_T4_1D         (1 << 1)        /* !!T.4 1D */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   380
"/    #define     CODINGMETHODS_T4_2D         (1 << 2)        /* !!T.4 2D */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   381
"/    #define     CODINGMETHODS_T6            (1 << 3)        /* !!T.6 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   382
"/    #define     CODINGMETHODS_T85           (1 << 4)        /* !!T.85 JBIG */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   383
"/    #define     CODINGMETHODS_T42           (1 << 5)        /* !!T.42 JPEG */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   384
"/    #define     CODINGMETHODS_T43           (1 << 6)        /* !!T.43 colour by layered JBIG */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   385
"/    #define TIFFTAG_VERSIONYEAR                     404     /* !!TIFF/FX version year */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   386
"/    #define TIFFTAG_MODENUMBER                      405     /* !!TIFF/FX mode number */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   387
"/    #define TIFFTAG_DECODE                          433     /* !!TIFF/FX decode */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   388
"/    #define TIFFTAG_IMAGEBASECOLOR          434     /* !!TIFF/FX image base colour */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   389
"/    #define TIFFTAG_T82OPTIONS                      435     /* !!TIFF/FX T.82 options */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   390
"/    /*
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   391
"/     * 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
   392
"/     * revised JPEG-in-TIFF scheme.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   393
"/     */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   394
"/    #define TIFFTAG_JPEGPROC                512     /* !!JPEG processing algorithm */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   395
"/    #define     JPEGPROC_BASELINE           1       /* !!baseline sequential */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   396
"/    #define     JPEGPROC_LOSSLESS           14      /* !!Huffman coded lossless */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   397
"/    #define TIFFTAG_JPEGIFOFFSET            513     /* !!pointer to SOI marker */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   398
"/    #define TIFFTAG_JPEGIFBYTECOUNT         514     /* !!JFIF stream length */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   399
"/    #define TIFFTAG_JPEGRESTARTINTERVAL     515     /* !!restart interval length */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   400
"/    #define TIFFTAG_JPEGLOSSLESSPREDICTORS  517     /* !!lossless proc predictor */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   401
"/    #define TIFFTAG_JPEGPOINTTRANSFORM      518     /* !!lossless point transform */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   402
"/    #define TIFFTAG_JPEGQTABLES             519     /* !!Q matrix offsets */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   403
"/    #define TIFFTAG_JPEGDCTABLES            520     /* !!DCT table offsets */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   404
"/    #define TIFFTAG_JPEGACTABLES            521     /* !!AC coefficient offsets */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   405
"/    #define TIFFTAG_YCBCRCOEFFICIENTS       529     /* !!RGB -> YCbCr transform */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   406
"/    #define TIFFTAG_YCBCRSUBSAMPLING        530     /* !!YCbCr subsampling factors */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   407
"/    #define TIFFTAG_YCBCRPOSITIONING        531     /* !!subsample positioning */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   408
"/    #define     YCBCRPOSITION_CENTERED      1       /* !!as in PostScript Level 2 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   409
"/    #define     YCBCRPOSITION_COSITED       2       /* !!as in CCIR 601-1 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   410
"/    #define TIFFTAG_REFERENCEBLACKWHITE     532     /* !!colorimetry info */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   411
"/    #define TIFFTAG_STRIPROWCOUNTS          559 /* !!TIFF/FX strip row counts */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   412
"/    #define TIFFTAG_XMLPACKET               700     /* %XML packet
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   413
"/                                                       [Adobe XMP Specification,
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   414
"/                                                       January 2004 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   415
"/    #define TIFFTAG_OPIIMAGEID              32781   /* %OPI ImageID
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   416
"/                                                       [Adobe TIFF technote] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   417
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   418
"/    /* tags 32952-32956 are private tags registered to Island Graphics */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   419
"/    #define TIFFTAG_REFPTS                  32953   /* image reference points */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   420
"/    #define TIFFTAG_REGIONTACKPOINT         32954   /* region-xform tack point */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   421
"/    #define TIFFTAG_REGIONWARPCORNERS       32955   /* warp quadrilateral */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   422
"/    #define TIFFTAG_REGIONAFFINE            32956   /* affine transformation mat */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   423
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   424
"/    /* tags 32995-32999 are private tags registered to SGI */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   425
"/    #define TIFFTAG_MATTEING                32995   /* $use ExtraSamples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   426
"/    #define TIFFTAG_DATATYPE                32996   /* $use SampleFormat */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   427
"/    #define TIFFTAG_IMAGEDEPTH              32997   /* z depth of image */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   428
"/    #define TIFFTAG_TILEDEPTH               32998   /* z depth/data tile */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   429
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   430
"/    /* tags 33300-33309 are private tags registered to Pixar */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   431
"/    /*
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   432
"/     * TIFFTAG_PIXAR_IMAGEFULLWIDTH and TIFFTAG_PIXAR_IMAGEFULLLENGTH
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   433
"/     * 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
   434
"/     * They reflect the size of the original uncropped image.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   435
"/     * The TIFFTAG_XPOSITION and TIFFTAG_YPOSITION can be used
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   436
"/     * 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
   437
"/     */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   438
"/    #define TIFFTAG_PIXAR_IMAGEFULLWIDTH    33300   /* full image size in x */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   439
"/    #define TIFFTAG_PIXAR_IMAGEFULLLENGTH   33301   /* full image size in y */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   440
"/     /* 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
   441
"/      * used by Pixar's texture formats.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   442
"/      */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   443
"/    #define TIFFTAG_PIXAR_TEXTUREFORMAT     33302   /* texture map format */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   444
"/    #define TIFFTAG_PIXAR_WRAPMODES         33303   /* s & t wrap modes */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   445
"/    #define TIFFTAG_PIXAR_FOVCOT            33304   /* cotan(fov) for env. maps */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   446
"/    #define TIFFTAG_PIXAR_MATRIX_WORLDTOSCREEN 33305
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   447
"/    #define TIFFTAG_PIXAR_MATRIX_WORLDTOCAMERA 33306
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   448
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   449
"/    /* tag 33405 is a private tag registered to Eastman Kodak */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   450
"/    #define TIFFTAG_WRITERSERIALNUMBER      33405   /* device serial number */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   451
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   452
"/    #define TIFFTAG_CFAREPEATPATTERNDIM     33421   /* dimensions of CFA pattern */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   453
"/    #define TIFFTAG_CFAPATTERN              33422   /* color filter array pattern */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   454
"/    /* 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
   455
"/    #define TIFFTAG_COPYRIGHT               33432   /* copyright string */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   456
"/    /* IPTC TAG from RichTIFF specifications */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   457
"/    #define TIFFTAG_RICHTIFFIPTC            33723
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   458
"/    /* 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
   459
"/    #define TIFFTAG_IT8SITE                 34016   /* site name */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   460
"/    #define TIFFTAG_IT8COLORSEQUENCE        34017   /* color seq. [RGB,CMYK,etc] */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   461
"/    #define TIFFTAG_IT8HEADER               34018   /* DDES Header */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   462
"/    #define TIFFTAG_IT8RASTERPADDING        34019   /* raster scanline padding */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   463
"/    #define TIFFTAG_IT8BITSPERRUNLENGTH     34020   /* # of bits in short run */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   464
"/    #define TIFFTAG_IT8BITSPEREXTENDEDRUNLENGTH 34021/* # of bits in long run */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   465
"/    #define TIFFTAG_IT8COLORTABLE           34022   /* LW colortable */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   466
"/    #define TIFFTAG_IT8IMAGECOLORINDICATOR  34023   /* BP/BL image color switch */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   467
"/    #define TIFFTAG_IT8BKGCOLORINDICATOR    34024   /* BP/BL bg color switch */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   468
"/    #define TIFFTAG_IT8IMAGECOLORVALUE      34025   /* BP/BL image color value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   469
"/    #define TIFFTAG_IT8BKGCOLORVALUE        34026   /* BP/BL bg color value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   470
"/    #define TIFFTAG_IT8PIXELINTENSITYRANGE  34027   /* MP pixel intensity value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   471
"/    #define TIFFTAG_IT8TRANSPARENCYINDICATOR 34028  /* HC transparency switch */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   472
"/    #define TIFFTAG_IT8COLORCHARACTERIZATION 34029  /* color character. table */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   473
"/    #define TIFFTAG_IT8HCUSAGE              34030   /* HC usage indicator */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   474
"/    #define TIFFTAG_IT8TRAPINDICATOR        34031   /* Trapping indicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   475
"/                                                       (untrapped=0, trapped=1) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   476
"/    #define TIFFTAG_IT8CMYKEQUIVALENT       34032   /* CMYK color equivalents */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   477
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   478
"/    /* tags 34232-34236 are private tags registered to Texas Instruments */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   479
"/    #define TIFFTAG_FRAMECOUNT              34232   /* Sequence Frame Count */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   480
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   481
"/    /* tag 34377 is private tag registered to Adobe for PhotoShop */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   482
"/    #define TIFFTAG_PHOTOSHOP               34377 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   483
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   484
"/    /* tags 34665, 34853 and 40965 are documented in EXIF specification */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   485
"/    #define TIFFTAG_EXIFIFD                 34665   /* Pointer to EXIF private directory */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   486
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   487
"/    /* tag 34750 is a private tag registered to Adobe? */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   488
"/    #define TIFFTAG_ICCPROFILE              34675   /* ICC profile data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   489
"/    #define TIFFTAG_IMAGELAYER              34732   /* !!TIFF/FX image layer information */
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 Pixel Magic */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   492
"/    #define TIFFTAG_JBIGOPTIONS             34750   /* JBIG options */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   493
"/    #define TIFFTAG_GPSIFD                  34853   /* Pointer to GPS private directory */
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
"/    /* tags 34908-34914 are private tags registered to SGI */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   496
"/    #define TIFFTAG_FAXRECVPARAMS           34908   /* encoded Class 2 ses. parms */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   497
"/    #define TIFFTAG_FAXSUBADDRESS           34909   /* received SubAddr string */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   498
"/    #define TIFFTAG_FAXRECVTIME             34910   /* receive time (secs) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   499
"/    #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
   500
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   501
"/    /* tags 37439-37443 are registered to SGI <gregl@sgi.com> */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   502
"/    #define TIFFTAG_STONITS                 37439   /* Sample value to Nits */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   503
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   504
"/    /* tag 34929 is a private tag registered to FedEx */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   505
"/    #define TIFFTAG_FEDEX_EDR               34929   /* unknown use */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   506
"/    #define TIFFTAG_INTEROPERABILITYIFD     40965   /* Pointer to Interoperability private directory */
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
    "/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   509
    "/ Adobe Digital Negative (DNG) format tags
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   510
    "/
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
"/    #define TIFFTAG_DNGVERSION              50706   /* &DNG version number */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   513
"/    #define TIFFTAG_DNGBACKWARDVERSION      50707   /* &DNG compatibility version */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   514
"/    #define TIFFTAG_UNIQUECAMERAMODEL       50708   /* &name for the camera model */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   515
"/    #define TIFFTAG_LOCALIZEDCAMERAMODEL    50709   /* &localized camera model name */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   516
"/    #define TIFFTAG_CFAPLANECOLOR           50710   /* &CFAPattern->LinearRaw space mapping */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   517
"/    #define TIFFTAG_CFALAYOUT               50711   /* &spatial layout of the CFA */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   518
"/    #define TIFFTAG_LINEARIZATIONTABLE      50712   /* &lookup table description */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   519
"/    #define TIFFTAG_BLACKLEVELREPEATDIM     50713   /* &repeat pattern size for the BlackLevel tag */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   520
"/    #define TIFFTAG_BLACKLEVEL              50714   /* &zero light encoding level */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   521
"/    #define TIFFTAG_BLACKLEVELDELTAH        50715   /* &zero light encoding level differences (columns) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   522
"/    #define TIFFTAG_BLACKLEVELDELTAV        50716   /* &zero light encoding level differences (rows) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   523
"/    #define TIFFTAG_WHITELEVEL              50717   /* &fully saturated encoding level */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   524
"/    #define TIFFTAG_DEFAULTSCALE            50718   /* &default scale factors */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   525
"/    #define TIFFTAG_DEFAULTCROPORIGIN       50719   /* &origin of the final image area */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   526
"/    #define TIFFTAG_DEFAULTCROPSIZE         50720   /* &size of the final image area */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   527
"/    #define TIFFTAG_COLORMATRIX1            50721   /* &XYZ->reference color space transformation matrix 1 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   528
"/    #define TIFFTAG_COLORMATRIX2            50722   /* &XYZ->reference color space transformation matrix 2 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   529
"/    #define TIFFTAG_CAMERACALIBRATION1      50723   /* &calibration matrix 1 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   530
"/    #define TIFFTAG_CAMERACALIBRATION2      50724   /* &calibration matrix 2 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   531
"/    #define TIFFTAG_REDUCTIONMATRIX1        50725   /* &dimensionality reduction matrix 1 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   532
"/    #define TIFFTAG_REDUCTIONMATRIX2        50726   /* &dimensionality reduction matrix 2 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   533
"/    #define TIFFTAG_ANALOGBALANCE           50727   /* &gain applied the stored raw values*/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   534
"/    #define TIFFTAG_ASSHOTNEUTRAL           50728   /* &selected white balance in linear reference space */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   535
"/    #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
   536
"/    #define TIFFTAG_BASELINEEXPOSURE        50730   /* &how much to move the zero point */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   537
"/    #define TIFFTAG_BASELINENOISE           50731   /* &relative noise level */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   538
"/    #define TIFFTAG_BASELINESHARPNESS       50732   /* &relative amount of sharpening */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   539
"/    #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
   540
"/    #define TIFFTAG_LINEARRESPONSELIMIT     50734   /* &non-linear encoding range */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   541
"/    #define TIFFTAG_CAMERASERIALNUMBER      50735   /* &camera's serial number */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   542
"/    #define TIFFTAG_LENSINFO                50736   /* info about the lens */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   543
"/    #define TIFFTAG_CHROMABLURRADIUS        50737   /* &chroma blur radius */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   544
"/    #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
   545
"/    #define TIFFTAG_SHADOWSCALE             50739   /* &used by Adobe Camera Raw */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   546
"/    #define TIFFTAG_DNGPRIVATEDATA          50740   /* &manufacturer's private data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   547
"/    #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
   548
"/    #define TIFFTAG_CALIBRATIONILLUMINANT1  50778   /* &illuminant 1 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   549
"/    #define TIFFTAG_CALIBRATIONILLUMINANT2  50779   /* &illuminant 2 */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   550
"/    #define TIFFTAG_BESTQUALITYSCALE        50780   /* &best quality multiplier */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   551
"/    #define TIFFTAG_RAWDATAUNIQUEID         50781   /* &unique identifier for the raw image data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   552
"/    #define TIFFTAG_ORIGINALRAWFILENAME     50827   /* &file name of the original raw file */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   553
"/    #define TIFFTAG_ORIGINALRAWFILEDATA     50828   /* &contents of the original raw file */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   554
"/    #define TIFFTAG_ACTIVEAREA              50829   /* &active (non-masked) pixels of the sensor */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   555
"/    #define TIFFTAG_MASKEDAREAS             50830   /* &list of coordinates of fully masked pixels */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   556
"/    #define TIFFTAG_ASSHOTICCPROFILE        50831   /* &these two tags used to */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   557
"/    #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
   558
"/    #define TIFFTAG_CURRENTICCPROFILE       50833   /* & */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   559
"/    #define TIFFTAG_CURRENTPREPROFILEMATRIX 50834   /* & */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   560
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   561
"/    /* tag 65535 is an undefined tag used by Eastman Kodak */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   562
"/    #define TIFFTAG_DCSHUESHIFTVALUES       65535   /* hue shift correction data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   563
"/
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
"/     * The following are ``pseudo tags'' that can be used to control
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   566
"/     * codec-specific functionality.  These tags are not written to file.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   567
"/     * 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
   568
"/     * collide with Aldus-assigned tags.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   569
"/     *
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   570
"/     * 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
   571
"/     * 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
   572
"/     * http://www.remotesensing.org/libtiff/bugs.html with the appropriate
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   573
"/     * C definitions to add.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   574
"/     */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   575
"/    #define TIFFTAG_FAXMODE                 65536   /* Group 3/4 format control */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   576
"/    #define     FAXMODE_CLASSIC     0x0000          /* default, include RTC */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   577
"/    #define     FAXMODE_NORTC       0x0001          /* no RTC at end of data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   578
"/    #define     FAXMODE_NOEOL       0x0002          /* no EOL code at end of row */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   579
"/    #define     FAXMODE_BYTEALIGN   0x0004          /* byte align row */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   580
"/    #define     FAXMODE_WORDALIGN   0x0008          /* word align row */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   581
"/    #define     FAXMODE_CLASSF      FAXMODE_NORTC   /* TIFF Class F */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   582
"/    #define TIFFTAG_JPEGQUALITY             65537   /* Compression quality level */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   583
"/    /* 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
   584
"/    #define TIFFTAG_JPEGCOLORMODE           65538   /* Auto RGB<=>YCbCr convert? */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   585
"/    #define     JPEGCOLORMODE_RAW   0x0000          /* no conversion (default) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   586
"/    #define     JPEGCOLORMODE_RGB   0x0001          /* do auto conversion */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   587
"/    #define TIFFTAG_JPEGTABLESMODE          65539   /* What to put in JPEGTables */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   588
"/    #define     JPEGTABLESMODE_QUANT 0x0001         /* include quantization tbls */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   589
"/    #define     JPEGTABLESMODE_HUFF 0x0002          /* include Huffman tbls */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   590
"/    /* Note: default is JPEGTABLESMODE_QUANT | JPEGTABLESMODE_HUFF */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   591
"/    #define TIFFTAG_FAXFILLFUNC             65540   /* G3/G4 fill function */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   592
"/    #define TIFFTAG_PIXARLOGDATAFMT         65549   /* PixarLogCodec I/O data sz */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   593
"/    #define     PIXARLOGDATAFMT_8BIT        0       /* regular u_char samples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   594
"/    #define     PIXARLOGDATAFMT_8BITABGR    1       /* ABGR-order u_chars */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   595
"/    #define     PIXARLOGDATAFMT_11BITLOG    2       /* 11-bit log-encoded (raw) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   596
"/    #define     PIXARLOGDATAFMT_12BITPICIO  3       /* as per PICIO (1.0==2048) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   597
"/    #define     PIXARLOGDATAFMT_16BIT       4       /* signed short samples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   598
"/    #define     PIXARLOGDATAFMT_FLOAT       5       /* IEEE float samples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   599
"/    /* 65550-65556 are allocated to Oceana Matrix <dev@oceana.com> */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   600
"/    #define TIFFTAG_DCSIMAGERTYPE           65550   /* imager model & filter */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   601
"/    #define     DCSIMAGERMODEL_M3           0       /* M3 chip (1280 x 1024) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   602
"/    #define     DCSIMAGERMODEL_M5           1       /* M5 chip (1536 x 1024) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   603
"/    #define     DCSIMAGERMODEL_M6           2       /* M6 chip (3072 x 2048) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   604
"/    #define     DCSIMAGERFILTER_IR          0       /* infrared filter */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   605
"/    #define     DCSIMAGERFILTER_MONO        1       /* monochrome filter */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   606
"/    #define     DCSIMAGERFILTER_CFA         2       /* color filter array */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   607
"/    #define     DCSIMAGERFILTER_OTHER       3       /* other filter */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   608
"/    #define TIFFTAG_DCSINTERPMODE           65551   /* interpolation mode */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   609
"/    #define     DCSINTERPMODE_NORMAL        0x0     /* whole image, default */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   610
"/    #define     DCSINTERPMODE_PREVIEW       0x1     /* preview of image (384x256) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   611
"/    #define TIFFTAG_DCSBALANCEARRAY         65552   /* color balance values */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   612
"/    #define TIFFTAG_DCSCORRECTMATRIX        65553   /* color correction values */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   613
"/    #define TIFFTAG_DCSGAMMA                65554   /* gamma value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   614
"/    #define TIFFTAG_DCSTOESHOULDERPTS       65555   /* toe & shoulder points */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   615
"/    #define TIFFTAG_DCSCALIBRATIONFD        65556   /* calibration file desc */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   616
"/    /* 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
   617
"/    #define TIFFTAG_ZIPQUALITY              65557   /* compression quality level */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   618
"/    #define TIFFTAG_PIXARLOGQUALITY         65558   /* PixarLog uses same scale */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   619
"/    /* 65559 is allocated to Oceana Matrix <dev@oceana.com> */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   620
"/    #define TIFFTAG_DCSCLIPRECTANGLE        65559   /* area of image to acquire */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   621
"/    #define TIFFTAG_SGILOGDATAFMT           65560   /* SGILog user data format */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   622
"/    #define     SGILOGDATAFMT_FLOAT         0       /* IEEE float samples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   623
"/    #define     SGILOGDATAFMT_16BIT         1       /* 16-bit samples */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   624
"/    #define     SGILOGDATAFMT_RAW           2       /* uninterpreted data */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   625
"/    #define     SGILOGDATAFMT_8BIT          3       /* 8-bit RGB monitor values */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   626
"/    #define TIFFTAG_SGILOGENCODE            65561 /* SGILog data encoding control*/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   627
"/    #define     SGILOGENCODE_NODITHER       0     /* do not dither encoded values*/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   628
"/    #define     SGILOGENCODE_RANDITHER      1     /* randomly dither encd values */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   629
"/    #define TIFFTAG_LZMAPRESET              65562   /* LZMA2 preset (compression level) */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   630
"/    #define TIFFTAG_PERSAMPLE       65563   /* interface for per sample tags */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   631
"/    #define     PERSAMPLE_MERGED        0   /* present as a single value */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   632
"/    #define     PERSAMPLE_MULTI         1   /* present as multiple values */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   633
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   634
    "/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   635
    "/ EXIF tags
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   636
    "/
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   637
"/    #define EXIFTAG_EXPOSURETIME            33434   /* Exposure time */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   638
"/    #define EXIFTAG_FNUMBER                 33437   /* F number */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   639
"/    #define EXIFTAG_EXPOSUREPROGRAM         34850   /* Exposure program */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   640
"/    #define EXIFTAG_SPECTRALSENSITIVITY     34852   /* Spectral sensitivity */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   641
"/    #define EXIFTAG_ISOSPEEDRATINGS         34855   /* ISO speed rating */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   642
"/    #define EXIFTAG_OECF                    34856   /* Optoelectric conversion factor */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   643
"/    #define EXIFTAG_EXIFVERSION             36864   /* Exif version */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   644
"/    #define EXIFTAG_DATETIMEORIGINAL        36867   /* Date and time of original data generation */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   645
"/    #define EXIFTAG_DATETIMEDIGITIZED       36868   /* Date and time of digital data generation */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   646
"/    #define EXIFTAG_COMPONENTSCONFIGURATION 37121   /* Meaning of each component */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   647
"/    #define EXIFTAG_COMPRESSEDBITSPERPIXEL  37122   /* Image compression mode */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   648
"/    #define EXIFTAG_SHUTTERSPEEDVALUE       37377   /* Shutter speed */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   649
"/    #define EXIFTAG_APERTUREVALUE           37378   /* Aperture */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   650
"/    #define EXIFTAG_BRIGHTNESSVALUE         37379   /* Brightness */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   651
"/    #define EXIFTAG_EXPOSUREBIASVALUE       37380   /* Exposure bias */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   652
"/    #define EXIFTAG_MAXAPERTUREVALUE        37381   /* Maximum lens aperture */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   653
"/    #define EXIFTAG_SUBJECTDISTANCE         37382   /* Subject distance */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   654
"/    #define EXIFTAG_METERINGMODE            37383   /* Metering mode */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   655
"/    #define EXIFTAG_LIGHTSOURCE             37384   /* Light source */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   656
"/    #define EXIFTAG_FLASH                   37385   /* Flash */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   657
"/    #define EXIFTAG_FOCALLENGTH             37386   /* Lens focal length */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   658
"/    #define EXIFTAG_SUBJECTAREA             37396   /* Subject area */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   659
"/    #define EXIFTAG_MAKERNOTE               37500   /* Manufacturer notes */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   660
"/    #define EXIFTAG_USERCOMMENT             37510   /* User comments */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   661
"/    #define EXIFTAG_SUBSECTIME              37520   /* DateTime subseconds */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   662
"/    #define EXIFTAG_SUBSECTIMEORIGINAL      37521   /* DateTimeOriginal subseconds */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   663
"/    #define EXIFTAG_SUBSECTIMEDIGITIZED     37522   /* DateTimeDigitized subseconds */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   664
"/    #define EXIFTAG_FLASHPIXVERSION         40960   /* Supported Flashpix version */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   665
"/    #define EXIFTAG_COLORSPACE              40961   /* Color space information */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   666
"/    #define EXIFTAG_PIXELXDIMENSION         40962   /* Valid image width */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   667
"/    #define EXIFTAG_PIXELYDIMENSION         40963   /* Valid image height */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   668
"/    #define EXIFTAG_RELATEDSOUNDFILE        40964   /* Related audio file */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   669
"/    #define EXIFTAG_FLASHENERGY             41483   /* Flash energy */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   670
"/    #define EXIFTAG_SPATIALFREQUENCYRESPONSE 41484  /* Spatial frequency response */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   671
"/    #define EXIFTAG_FOCALPLANEXRESOLUTION   41486   /* Focal plane X resolution */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   672
"/    #define EXIFTAG_FOCALPLANEYRESOLUTION   41487   /* Focal plane Y resolution */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   673
"/    #define EXIFTAG_FOCALPLANERESOLUTIONUNIT 41488  /* Focal plane resolution unit */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   674
"/    #define EXIFTAG_SUBJECTLOCATION         41492   /* Subject location */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   675
"/    #define EXIFTAG_EXPOSUREINDEX           41493   /* Exposure index */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   676
"/    #define EXIFTAG_SENSINGMETHOD           41495   /* Sensing method */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   677
"/    #define EXIFTAG_FILESOURCE              41728   /* File source */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   678
"/    #define EXIFTAG_SCENETYPE               41729   /* Scene type */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   679
"/    #define EXIFTAG_CFAPATTERN              41730   /* CFA pattern */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   680
"/    #define EXIFTAG_CUSTOMRENDERED          41985   /* Custom image processing */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   681
"/    #define EXIFTAG_EXPOSUREMODE            41986   /* Exposure mode */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   682
"/    #define EXIFTAG_WHITEBALANCE            41987   /* White balance */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   683
"/    #define EXIFTAG_DIGITALZOOMRATIO        41988   /* Digital zoom ratio */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   684
"/    #define EXIFTAG_FOCALLENGTHIN35MMFILM   41989   /* Focal length in 35 mm film */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   685
"/    #define EXIFTAG_SCENECAPTURETYPE        41990   /* Scene capture type */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   686
"/    #define EXIFTAG_GAINCONTROL             41991   /* Gain control */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   687
"/    #define EXIFTAG_CONTRAST                41992   /* Contrast */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   688
"/    #define EXIFTAG_SATURATION              41993   /* Saturation */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   689
"/    #define EXIFTAG_SHARPNESS               41994   /* Sharpness */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   690
"/    #define EXIFTAG_DEVICESETTINGDESCRIPTION 41995  /* Device settings description */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   691
"/    #define EXIFTAG_SUBJECTDISTANCERANGE    41996   /* Subject distance range */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   692
"/    #define EXIFTAG_GAINCONTROL             41991   /* Gain control */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   693
"/    #define EXIFTAG_GAINCONTROL             41991   /* Gain control */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   694
"/    #define EXIFTAG_IMAGEUNIQUEID           42016   /* Unique image ID */
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   695
392
7729a280960c handle bottom-to-top images (orientation==4)
Claus Gittinger <cg@exept.de>
parents: 359
diff changeset
   696
    "
7729a280960c handle bottom-to-top images (orientation==4)
Claus Gittinger <cg@exept.de>
parents: 359
diff changeset
   697
     self initialize
7729a280960c handle bottom-to-top images (orientation==4)
Claus Gittinger <cg@exept.de>
parents: 359
diff changeset
   698
    "
7729a280960c handle bottom-to-top images (orientation==4)
Claus Gittinger <cg@exept.de>
parents: 359
diff changeset
   699
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   700
    "Modified: / 27-08-2017 / 15:29:24 / cg"
28
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
   701
! !
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
   702
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   703
!TIFFReader class methodsFor:'testing'!
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
   704
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   705
canRepresent:anImage
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   706
    "return true, if anImage can be represented in my file format.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   707
     Any image is supported."
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   708
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   709
    ^ true
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   710
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   711
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
   712
isValidImageFile:aFileName
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   713
    "return true, if aFileName contains a TIFF image"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   714
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   715
    |inStream bytes1_2 byte3 byte4 versionLow versionHi|
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
   716
11
1d0df18a7049 *** empty log message ***
claus
parents: 6
diff changeset
   717
    inStream := self streamReadingFile:aFileName.
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
   718
    inStream isNil ifTrue:[^ false].
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
   719
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   720
    bytes1_2 := inStream next:2.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   721
    byte3 := inStream nextByte.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   722
    byte4 := inStream nextByte.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   723
    inStream close.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   724
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   725
    ((bytes1_2 = 'II' "tiff") or:[bytes1_2 = 'PE' "mdi"]) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   726
        "/ intel byte order (lsb)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   727
        versionLow := byte3. versionHi := byte4.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   728
    ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   729
        ((bytes1_2 = 'MM' "tiff") or:[bytes1_2 = 'EP' "mdi"])  ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   730
            "/ motorola byte order (msb)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   731
            versionLow := byte4. versionHi := byte3.
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
            ^ false
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   734
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   735
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   736
    versionHi == 0 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   737
        (versionLow == 42) ifTrue:[^ true].       "/ tiff
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   738
        (versionLow == 43) ifTrue:[^ true].       "/ bigtiff
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
   739
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   740
    ^ false.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   741
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   742
    "Modified: / 26-08-2017 / 15:31:08 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   743
! !
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   744
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   745
!TIFFReader methodsFor:'accessing'!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   746
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   747
decodeMetaTags:aBoolean
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   748
    "by default, extra meta tags (photoshop) are not decoded;
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   749
     set to true to get them in metatags"
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
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   753
    "Modified (comment): / 27-08-2017 / 18:37:04 / cg"
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
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   756
loadFullResolutionImage:aBoolean
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   757
    "by default, the full-resolution dng image is not decoded;
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   758
     set to true to get it in the imageSequence"
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
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   762
    "Created: / 27-08-2017 / 18:41:48 / cg"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   763
! !
3f9277473954 Initial revision
claus
parents:
diff changeset
   764
1762
55cf76514c8c method category rename
Claus Gittinger <cg@exept.de>
parents: 1759
diff changeset
   765
!TIFFReader methodsFor:'private-data reading'!
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   766
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   767
readAdobeDeflateTiffImageData
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   768
    ^ self readDeflateTiffImageData
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   769
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   770
    "Created: / 26-08-2017 / 14:44:35 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   771
    "Modified: / 27-08-2017 / 18:55:11 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   772
!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   773
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   774
readCCITT3RLETiffImageData
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   775
    ^ 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
   776
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
   777
    "Modified: / 3.2.1998 / 18:03:14 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   778
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   779
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   780
readCCITT3RLEWTiffImageData
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   781
    ^ 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
   782
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
   783
    "Modified: / 3.2.1998 / 18:03:30 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   784
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   785
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   786
readCCITTGroup3TiffImageData
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   787
    "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
   788
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   789
    |bytesPerRow bitsPerRow compressedStrip nPlanes 
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   790
     stripNr       "{ Class: SmallInteger }"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   791
     offset        "{ Class: SmallInteger }"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   792
     row           "{ Class: SmallInteger }"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   793
     bytesPerStrip "{ Class: SmallInteger }" 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   794
     count dstIndex|
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   795
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   796
    nPlanes := samplesPerPixel.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   797
    (nPlanes ~~ 1) ifTrue:[
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   798
        (nPlanes == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   799
            (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   800
                ^ self fileFormatError:'only separate planes are supported'.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   801
            ].
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   802
            'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   803
            nPlanes := 1
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   804
        ] ifFalse:[
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   805
            ^ self fileFormatError:'only monochrome/greyscale ccitt3supported'.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   806
        ].   
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   807
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   808
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   809
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   810
    ].
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   811
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   812
"/    (rowsPerStrip ~~ 1) ifTrue:[
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   813
"/        ^ self fileFormatError:'currently require rowsPerStrip to be 1'.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   814
"/    ].
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   815
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   816
    "/ 'TIFFReader: decompressing CCITT-3 ...' infoPrintNL.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   817
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   818
    bitsPerRow := width * (bitsPerSample at:1).
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   819
    bytesPerRow := bitsPerRow // 8.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   820
    ((bitsPerRow \\ 8) ~~ 0) ifTrue:[
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
   821
        bytesPerRow := bytesPerRow + 1
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   822
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   823
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   824
    data := ByteArray new:(bytesPerRow * height).
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   825
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   826
    "/ if the number of rows per strip is unknown (-1),
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   827
    "/ make it one big strip and decompress that
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   828
    rowsPerStrip = 16rFFFFFFFF ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   829
        self assert:(stripByteCounts size == 1).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   830
        count := stripByteCounts sum.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   831
        compressedStrip := ByteArray uninitializedNew:count.
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   832
        self positionToStrip:1.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   833
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   834
        (inStream nextBytes:count into:compressedStrip) == count ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   835
            self error:'short read'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   836
        ].
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
        compressedStrip := compressedStrip copyFrom:16r227.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   839
        
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   840
        dstIndex := self class 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   841
                    _decompressCCITT3From:compressedStrip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   842
                    count:count
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   843
                    into:data
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   844
                    startingAt:1.
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   845
        ^ self 
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   846
    ].
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
   847
    
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   848
    compressedStrip := ByteArray uninitializedNew:bytesPerRow.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   849
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   850
    offset := 1.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   851
    stripNr := 1.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   852
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   853
    row := 1.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   854
    bytesPerStrip := bytesPerRow * rowsPerStrip.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   855
    [row <= height] whileTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   856
        self positionToStrip:stripNr.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   857
        count := stripByteCounts at:stripNr.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   858
        (inStream nextBytes:count into:compressedStrip) == count ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   859
            self error:'short read'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   860
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   861
        dstIndex := self class 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   862
                    _decompressCCITT3From:compressedStrip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   863
                    count:count
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   864
                    into:data
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   865
                    startingAt:offset
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   866
                    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
   867
        offset := offset + bytesPerStrip.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   868
        row := row + rowsPerStrip.
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
   869
        stripNr := stripNr + 1.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   870
    ]
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
   871
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   872
    "
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   873
     TIFFReader fromFile:'/Users/cg/DownloadsUnsaved/image_software/libtiffpic/g3test.tif'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   874
    "
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   875
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   876
    "Modified: / 27-08-2017 / 15:37:51 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   877
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   878
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   879
readCCITTGroup4TiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
   880
    ^ self fileFormatError:'ccitt group4 fax compression not implemented'.
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   881
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
   882
    "Modified: / 3.2.1998 / 18:04:34 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   883
!
0
3f9277473954 Initial revision
claus
parents:
diff changeset
   884
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   885
readCCITTRLEWTiffImageData
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   886
    ^ self fileFormatError:'ccitt mod Huffman (rlew) compression not implemented'
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   887
!
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
   888
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
   889
readDCSTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
   890
    ^ self fileFormatError:'dcs compression not implemented'.
329
5fb99e0734e4 handle empty character-strings
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
   891
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
   892
    "Modified: / 3.2.1998 / 18:04:44 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   893
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
   894
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
   895
readDeflateTiffImageData
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   896
    |bytesPerRowIn bytesPerRow nPlanes overAllBytes
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   897
     bytesPerStrip "{ Class: SmallInteger }"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   898
     nBytes        "{ Class: SmallInteger }"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   899
     stripNr       "{ Class: SmallInteger }"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   900
     offset        "{ Class: SmallInteger }"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   901
     row           "{ Class: SmallInteger }" 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   902
     zlibReader nread msb
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   903
     convertFloats convertDoubles conversionBuffer|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   904
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   905
    nPlanes := samplesPerPixel.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   906
    convertFloats := convertDoubles := false.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   907
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   908
    (nPlanes >= 3) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   909
        bytesPerRowIn := width * ((bitsPerSample sum + 7) // 8).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   910
        (bitsPerSample conform:[:each | each == 8]) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   911
            sampleFormat == SAMPLEFORMAT_UINT ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   912
                ^ self fileFormatError:'unsupported sample format'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   913
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   914
        ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   915
            sampleFormat == SAMPLEFORMAT_IEEEFP ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   916
                nPlanes == 3 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   917
                    (bitsPerSample conform:[:each | each == 64]) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   918
                        convertDoubles := true.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   919
                        bytesPerRow := width * nPlanes.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   920
                        bitsPerSample := #(8 8 8).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   921
                    ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   922
                        (bitsPerSample conform:[:each | each == 32]) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   923
                            convertFloats := true.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   924
                            bytesPerRow := width * nPlanes.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   925
                            bitsPerSample := #(8 8 8).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   926
                        ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   927
                            ^ self fileFormatError:'only 64/64/64 bits/sample are supported with IEEE_FP samples'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   928
                        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   929
                    ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   930
                ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   931
                    ^ self fileFormatError:'only support 3 planes with IEEE_FP sample format'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   932
                ]    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   933
            ] ifFalse:[    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   934
                ^ self fileFormatError:'unsupported sample format'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   935
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   936
        ]
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   937
    ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   938
        (nPlanes == 2) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   939
            (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   940
                ^ self fileFormatError:'only separate planes are supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   941
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   942
            'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   943
            nPlanes := 1
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   944
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   945
        (nPlanes == 1) ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   946
            ^ self fileFormatError:'unsupported nPlanes: ' , nPlanes printString, '; only 3-sample rgb / monochrome supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   947
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   948
        bytesPerRowIn := (width * (bitsPerSample at:1) + 7) // 8.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   949
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   950
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   951
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   952
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   953
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   954
    "/ 'TIFFReader: decompressing Deflate ...' infoPrintNL.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   955
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   956
    bytesPerRow isNil ifTrue:[ bytesPerRow := bytesPerRowIn ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   957
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   958
    overAllBytes := bytesPerRow * height.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   959
    data := ByteArray new:overAllBytes.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   960
    (convertFloats or:[convertDoubles]) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   961
        conversionBuffer := ByteArray new:(bytesPerRowIn * rowsPerStrip).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   962
    ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   963
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   964
    offset := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   965
    stripNr := 0.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   966
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   967
    row := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   968
    bytesPerStrip := bytesPerRow * rowsPerStrip.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   969
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   970
    [row <= height] whileTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   971
        stripNr := stripNr + 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   972
        self positionToStrip:stripNr.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   973
        nBytes := stripByteCounts at:stripNr.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   974
        
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   975
        zlibReader := ZipStream readOpenAsZipStreamOn:inStream suppressHeaderAndChecksum:false.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   976
        zlibReader binary.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   977
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   978
        conversionBuffer notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   979
            nread := zlibReader next:nBytes into:conversionBuffer startingAt:1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   980
            msb := (byteOrder == #msb).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   981
            convertFloats ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   982
                |i|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   983
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   984
                self assert:(nread \\ 4) == 0.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   985
                i := 0.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   986
                1 to:nread-1 by:4 do:[:iF |
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   987
                    |dVal byteVal|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   988
                    dVal := conversionBuffer floatAt:iF MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   989
                    "/ rescale from 0..1 to 0..255
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   990
                    byteVal := (dVal * 255) asInteger clampBetween:0 and:255.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   991
                    data at:offset+i put:byteVal.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   992
                    i := i + 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   993
                ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   994
            ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   995
                convertDoubles ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   996
                    |i|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   997
                    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   998
                    self assert:(nread \\ 8) == 0.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   999
                    i := 0.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1000
                    1 to:nread-1 by:8 do:[:iF |
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1001
                        |dVal byteVal|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1002
                        dVal := conversionBuffer doubleAt:iF MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1003
                        "/ rescale from 0..1 to 0..255
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1004
                        byteVal := (dVal * 255) asInteger clampBetween:0 and:255.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1005
                        data at:offset+i put:byteVal.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1006
                        i := i + 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1007
                    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1008
                ]
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1009
            ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1010
        ] ifFalse:[    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1011
            nread := zlibReader next:nBytes into:data startingAt:offset.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1012
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1013
        
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1014
        offset := offset + bytesPerStrip.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1015
        row := row + rowsPerStrip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1016
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1017
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1018
    (predictor ~~ 1) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1019
        (predictor == 2) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1020
            self class decodeDelta:nPlanes in:data width:width height:height
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1021
        ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1022
            ^ self fileFormatError:'unsupported predictor'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1023
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1024
    ]
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1025
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1026
    "Modified: / 27-08-2017 / 15:38:08 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1027
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1028
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1029
readJBIGTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1030
    ^ self fileFormatError:'jbig compression not implemented'.
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1031
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1032
    "Modified: / 3.2.1998 / 18:05:04 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1033
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1034
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1035
readJPEGTiffImageData
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1036
    |nBytes compressedData|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1037
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1038
    stripByteCounts size == 1 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1039
        "/ single strip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1040
        self positionToStrip:1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1041
        nBytes := stripByteCounts at:1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1042
        compressedData := ByteArray uninitializedNew:nBytes.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1043
        (inStream nextBytes:nBytes into:compressedData) == nBytes ifFalse:[ self error:'short read' ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1044
        "/ pngOrJPGImage := JPEGReader fromStream:compressedData readStream.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1045
        "/ self halt.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1046
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1047
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1048
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1049
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1050
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1051
    ^ self fileFormatError:'jpeg (old) compression not implemented'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1052
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1053
    "Modified: / 27-08-2017 / 15:38:23 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1054
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1055
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1056
readLZWTiffImageData
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1057
    "read LZW compressed tiff data; 
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1058
     this method only handles 8+8+8 and 8+8+8+8 rgb 
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1059
     and 2bit or 2+2bit greyscale images.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1060
     For 2+2bit greyscale images, the alpha plane is ignored.
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1061
     (maybe other formats work also - but simply not tested)"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1062
1037
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1063
    |bytesPerRow compressedStrip nPlanes overAllBytes
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1064
     bytesPerStrip "{ Class: SmallInteger }"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1065
     nBytes        "{ Class: SmallInteger }"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1066
     prevSize      "{ Class: SmallInteger }"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1067
     stripNr       "{ Class: SmallInteger }"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1068
     offset        "{ Class: SmallInteger }"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1069
     row           "{ Class: SmallInteger }" |
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1070
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1071
    nPlanes := samplesPerPixel.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1072
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1073
    (nPlanes >= 3) ifTrue:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1074
        (bitsPerSample conform:[:each | each == 8]) ifFalse:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1075
            ^ self fileFormatError:'only 8/8/8(/8) bits/sample are supported'.
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1076
        ].
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1077
        bytesPerRow := width * samplesPerPixel.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  1078
    ] ifFalse:[
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1079
        (nPlanes == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1080
            (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1081
                ^ self fileFormatError:'only separate planes are supported'.
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1082
            ].
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  1083
            'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1084
            nPlanes := 1
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1085
        ].
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1086
        (nPlanes == 1) ifFalse:[
1830
8b04109affc1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1829
diff changeset
  1087
            ^ self fileFormatError:'unsupported nPlanes: ' , nPlanes printString, '; only 3-sample rgb / monochrome supported'.
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1088
        ].
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1089
        bytesPerRow := (width * (bitsPerSample at:1) + 7) // 8.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1090
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1091
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1092
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1093
    ].
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1094
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1095
    "/ 'TIFFReader: decompressing LZW ...' infoPrintNL.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1096
1037
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1097
    overAllBytes := bytesPerRow * height.
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1098
    bytesPerRow == width ifTrue:[
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1099
        data := ByteArray uninitializedNew:overAllBytes.
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1100
    ] ifFalse:[
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1101
        data := ByteArray new:overAllBytes.
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1102
    ].
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1103
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1104
    offset := 1.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1105
    stripNr := 0.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1106
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1107
    row := 1.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1108
    bytesPerStrip := bytesPerRow * rowsPerStrip.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1109
    prevSize := 0.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1110
    [row <= height] whileTrue:[
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1111
        stripNr := stripNr + 1.
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  1112
        self positionToStrip:stripNr.
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1113
        nBytes := stripByteCounts at:stripNr.
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1114
        (nBytes > prevSize) ifTrue:[
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1115
            compressedStrip := ByteArray uninitializedNew:nBytes.
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1116
            prevSize := nBytes
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1117
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1118
        (inStream nextBytes:nBytes into:compressedStrip) == nBytes ifFalse:[ self fileFormatError:'short file' ].
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1119
        self class 
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1120
            decompressLZWFrom:compressedStrip count:nBytes
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  1121
            into:data startingAt:offset.
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1122
        offset := offset + bytesPerStrip.
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1123
        row := row + rowsPerStrip
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1124
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1125
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1126
    predictor ~~ 1 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1127
        (predictor == 2) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1128
            self class decodeDelta:nPlanes in:data width:width height:height
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1129
        ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1130
            self fileFormatError:'unsupported predictor'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1131
        ]
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1132
    ]
335
a32831edacc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
  1133
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1134
    "Modified: / 27-08-2017 / 15:38:30 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1135
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1136
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1137
readNeXTJPEGTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1138
    ^ self fileFormatError:'next jpeg compression not implemented'.
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  1139
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1140
    "Modified: / 3.2.1998 / 18:10:45 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1141
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1142
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1143
readNeXTRLE2TiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1144
    ^ self fileFormatError:'next 2bit rle compression not implemented'.
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  1145
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1146
    "Modified: / 3.2.1998 / 18:10:54 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1147
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1148
1826
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1149
readNewJPEGTiffImageData
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1150
    ^ self fileFormatError:'new jpeg compression not implemented'.
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1151
!
0a452034f661 comment
Claus Gittinger <cg@exept.de>
parents: 1814
diff changeset
  1152
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1153
readPackbitsTiffImageData
744
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1154
    "this has only been tested with monochrome images"
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1155
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1156
    |bytesPerRow bitsPerRow nPlanes 
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1157
     stripNr       "{ Class: SmallInteger }"
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1158
     offset        "{ Class: SmallInteger }"
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1159
     row           "{ Class: SmallInteger }" 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1160
     nBytes        "{ Class: SmallInteger }" bitsPerPixel overAllBytes buffer|
744
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1161
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1162
    nPlanes := samplesPerPixel.
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1163
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1164
    "only support 1-sample/pixel,
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1165
     with alpha - if separate planes,
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1166
     or rgb - if non separate planes and no alpha"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1167
744
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1168
    (nPlanes == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1169
        (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1170
            ^ self fileFormatError:'with alpha, only separate planes supported'.
744
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1171
        ].
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1172
        'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1173
        nPlanes := 1.
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1174
        bitsPerPixel := bitsPerSample at:1.
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1175
        bitsPerSample := Array with:bitsPerPixel.
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1176
        samplesPerPixel := 1.
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1177
    ] ifFalse:[
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1178
        (nPlanes == 3) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1179
            (planarConfiguration ~~ PLANARCONFIG_CONTIG) ifTrue:[
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1180
                ^ self fileFormatError:'only non separate planes supported'.
744
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1181
            ].
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1182
            bitsPerSample ~= #(8 8 8) ifTrue:[
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1183
                ^ self fileFormatError:'only 8/8/8 rgb images supported'.
744
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1184
            ].
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1185
            bitsPerPixel := 24
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1186
        ] ifFalse:[
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1187
            (nPlanes ~~ 1) ifTrue:[
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1188
                ^ self fileFormatError:('format (nplanes == %1) not supported' bindWith:nPlanes).
744
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1189
            ].
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1190
            bitsPerPixel := bitsPerSample at:1.
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1191
        ]
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1192
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1193
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1194
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1195
    ].
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  1196
744
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1197
    bitsPerRow := width * bitsPerPixel.
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1198
    bytesPerRow := bitsPerRow // 8.
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1199
    ((bitsPerRow \\ 8) ~~ 0) ifTrue:[
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1200
        bytesPerRow := bytesPerRow + 1
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1201
    ].
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1202
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1203
    overAllBytes := bytesPerRow * height.
1037
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1204
    bytesPerRow == width ifTrue:[
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1205
        data := ByteArray uninitializedNew:overAllBytes.
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1206
    ] ifFalse:[
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1207
        data := ByteArray new:overAllBytes.
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1208
    ].
744
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1209
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1210
    offset := 1.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1211
    stripNr := 1.
744
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1212
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1213
    buffer := nil.
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1214
    row := 1.
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1215
    [row <= height] whileTrue:[
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1216
        nBytes := stripByteCounts at:stripNr.
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  1217
        self positionToStrip:stripNr.
744
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1218
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1219
        nBytes > buffer size ifTrue:[
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1220
            "/ realloc
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1221
            buffer := ByteArray uninitializedNew:nBytes.
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1222
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1223
        (inStream nextBytes:nBytes into:buffer) == nBytes ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1224
            self fileFormatError:'short file read'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1225
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1226
        self class decompressTiffPackBitsFrom:buffer to:data at:offset count:(bytesPerRow * rowsPerStrip).
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1227
        "/ nDecompressedBytes := self class decompressPackBits:nBytes from:buffer to:data startingAt:offset.
744
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1228
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1229
        offset := offset + (bytesPerRow * rowsPerStrip).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1230
        row := row + rowsPerStrip.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1231
        stripNr := stripNr + 1.
744
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1232
    ]
363d53be9eb0 packbits decompression.
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
  1233
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1234
    "Modified: / 27-08-2017 / 21:28:46 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1235
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1236
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1237
readPixarFilmTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1238
    ^ self fileFormatError:'pixar film compression not implemented'.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1239
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1240
    "Modified: / 3.2.1998 / 18:11:45 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1241
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1242
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1243
readPixarLogTiffImageData
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1244
    ^ self fileFormatError:'pixar log compression not implemented'.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  1245
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1246
    "Modified: / 3.2.1998 / 18:11:53 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1247
!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1248
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1249
readSGI24TiffImageData
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1250
    ^ self fileFormatError:'SGI 24-bit Log Luminance encoding not implemented' .
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1251
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1252
    "Created: / 25-08-2017 / 11:17:25 / cg"
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1253
!
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1254
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1255
readSGI32TiffImageData
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1256
    ^ self fileFormatError:'SGI 32-bit Log Luminance encoding not implemented' .
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1257
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1258
    "Created: / 25-08-2017 / 11:17:21 / cg"
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1259
!
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1260
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1261
readThunderScanTiffImageData
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1262
    |bytesPerRow compressedStrip nPlanes overAllBytes
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1263
     bytesPerStrip "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1264
     nBytes        "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1265
     prevSize      "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1266
     stripNr       "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1267
     offset        "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1268
     row           "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1269
     pixelIndex
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1270
     i even gen highNibble lastPixel d1 d2 d3|
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1271
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1272
    nPlanes := samplesPerPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1273
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1274
    (nPlanes == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1275
        (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1276
            ^ self fileFormatError:'only separate planes are supported'.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1277
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1278
        'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1279
        nPlanes := 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1280
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1281
    (nPlanes == 1) ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1282
        ^ self fileFormatError:'unsupported nPlanes: ' , nPlanes printString.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1283
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1284
    (bitsPerSample at:1) == 4 ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1285
        ^ 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
  1286
    ].    
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1287
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1288
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1289
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1290
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1291
    bytesPerRow := (width * (bitsPerSample at:1) + 7) // 8.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1292
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1293
    "/ 'TIFFReader: decompressing ThunderScan ...' infoPrintNL.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1294
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1295
    overAllBytes := bytesPerRow * height.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1296
    bytesPerRow == width ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1297
        data := ByteArray uninitializedNew:overAllBytes.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1298
    ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1299
        data := ByteArray new:overAllBytes.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1300
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1301
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1302
    offset := 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1303
    stripNr := 0.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1304
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1305
    gen := [:pixel | 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1306
                even ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1307
                    highNibble := pixel. 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1308
                    even := false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1309
                ] ifFalse:[    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1310
                    data at:pixelIndex put:((highNibble bitShift:4) bitOr:pixel).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1311
                    pixelIndex := pixelIndex + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1312
                    even := true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1313
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1314
            ].    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1315
    even := true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1316
    lastPixel := 0.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1317
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1318
    row := 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1319
    bytesPerStrip := bytesPerRow * rowsPerStrip.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1320
    prevSize := 0.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1321
    [row <= height] whileTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1322
        stripNr := stripNr + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1323
        self positionToStrip:stripNr.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1324
        nBytes := stripByteCounts at:stripNr.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1325
        (nBytes > prevSize) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1326
            compressedStrip := ByteArray uninitializedNew:nBytes.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1327
            prevSize := nBytes
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1328
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1329
        (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
  1330
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1331
        "/ RLE decode... (see http://fileformats.archiveteam.org/wiki/ThunderScan_compression)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1332
        i := 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1333
        pixelIndex := offset.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1334
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1335
        [i <= nBytes] whileTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1336
            |code|
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1337
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1338
            code := compressedStrip at:i.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1339
            i := i + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1340
            code >= 2r11000000 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1341
                "/ a single pixel
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1342
                lastPixel := code bitAnd:2r00111111.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1343
                self assert:(lastPixel <= 2r1111).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1344
                
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1345
                gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1346
            ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1347
                code >= 2r10000000 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1348
                    "/ three bit deltas (2 pixels)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1349
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1350
                    d1 := (code rightShift:3) bitAnd:2r111.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1351
                    d2 := code bitAnd:2r111.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1352
                    d1 ~~ 4 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1353
                        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
  1354
                        gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1355
                    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1356
                    d2 ~~ 4 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1357
                        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
  1358
                        gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1359
                    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1360
                ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1361
                    code >= 2r01000000 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1362
                        "/ two bit deltas (3 pixels)    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1363
                        d1 := (code rightShift:4) bitAnd:2r11.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1364
                        d2 := (code rightShift:2) bitAnd:2r11.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1365
                        d3 := code bitAnd:2r11.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1366
                        d1 ~~ 2 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1367
                            lastPixel := lastPixel + (#(0 1 0 -1) at:d1+1).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1368
                            gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1369
                        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1370
                        d2 ~~ 2 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1371
                            lastPixel := lastPixel + (#(0 1 0 -1) at:d2+1).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1372
                            gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1373
                        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1374
                        d3 ~~ 2 ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1375
                            lastPixel := lastPixel + (#(0 1 0 -1) at:d3+1).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1376
                            gen value:lastPixel.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1377
                        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1378
                    ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1379
                        code timesRepeat:[ gen value:lastPixel ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1380
                    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1381
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1382
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1383
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1384
        "/ self assert:(pixelIndex == (offset + bytesPerStrip)).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1385
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1386
        offset := offset + bytesPerStrip.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1387
        row := row + rowsPerStrip
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1388
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1389
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1390
    (predictor ~~ 1) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1391
        ^ self fileFormatError:('unsupported predictor: %1' bindWith:predictor).
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1392
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1393
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1394
    "Modified: / 27-08-2017 / 15:38:47 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1395
!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1396
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1397
readTiffImageData
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1398
    (compression == COMPRESSION_NONE " 1 " ) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1399
        self readUncompressedTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1400
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1401
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1402
    (compression == COMPRESSION_CCITTRLE " 2 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1403
        self readCCITT3RLETiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1404
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1405
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1406
    (compression == COMPRESSION_CCITTFAX3 " 3 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1407
        self readCCITTGroup3TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1408
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1409
    ]. 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1410
    (compression == COMPRESSION_CCITTFAX4 " 4 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1411
        self readCCITTGroup4TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1412
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1413
    ]. 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1414
    (compression == COMPRESSION_LZW " 5 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1415
        self readLZWTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1416
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1417
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1418
    (compression == COMPRESSION_OJPEG " 6 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1419
        self readJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1420
        ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1421
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1422
    (compression == COMPRESSION_JPEG " 7 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1423
        self readNewJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1424
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1425
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1426
    (compression == COMPRESSION_ADOBE_DEFLATE " 8 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1427
        self readAdobeDeflateTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1428
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1429
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1430
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1431
    (compression == COMPRESSION_NEXT " 32766 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1432
        self readNeXTRLE2TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1433
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1434
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1435
    (compression == COMPRESSION_CCITTRLEW " 32771 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1436
        self readCCITTRLEWTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1437
        ^ self
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1438
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1439
    (compression == COMPRESSION_PACKBITS " 32773 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1440
        self readPackbitsTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1441
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1442
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1443
    (compression == COMPRESSION_THUNDERSCAN " 32809 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1444
        self readThunderScanTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1445
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1446
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1447
    (compression == COMPRESSION_PIXARFILM " 32908 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1448
        self readPixarFilmTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1449
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1450
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1451
    (compression == COMPRESSION_PIXARLOG " 32909 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1452
        self readPixarLogTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1453
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1454
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1455
    (compression == COMPRESSION_DEFLATE " 32946 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1456
        self readDeflateTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1457
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1458
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1459
    (compression == COMPRESSION_DCS " 32947 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1460
        self readDCSTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1461
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1462
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1463
    (compression == COMPRESSION_NEXT_JPEG " 32865 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1464
        self readNeXTJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1465
        ^ self
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1466
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1467
    (compression == COMPRESSION_JBIG " 34661 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1468
        self readJBIGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1469
        ^ self
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1470
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1471
    (compression == COMPRESSION_SGILOG " 34676 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1472
        self readSGI32TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1473
        ^ self
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1474
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1475
    (compression == COMPRESSION_SGILOG24 " 34677 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1476
        self readSGI24TiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1477
        ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1478
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1479
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1480
    self fileFormatError:('compression type ' , compression printString , ' not known').
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1481
3977
c78bab5f36f2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  1482
    "Created: / 11-04-1997 / 00:19:44 / cg"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1483
    "Modified: / 26-08-2017 / 21:46:56 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1484
!
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1485
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1486
readTiledJPEGTiffImageData
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1487
    ^ self fileFormatError:'tiled jpeg (old) compression not implemented'.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1488
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1489
    "Created: / 25-08-2017 / 16:27:28 / cg"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1490
    "Modified: / 26-08-2017 / 13:39:04 / cg"
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1491
!
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1492
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1493
readTiledLZWTiffImageData
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1494
    ^ self fileFormatError:'tiled LZW data not implemented' .
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1495
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1496
    "Created: / 25-08-2017 / 01:05:13 / cg"
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1497
!
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1498
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1499
readTiledNewJPEGTiffImageData
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1500
    ^ self fileFormatError:'tiled new jpeg compression not implemented'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1501
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1502
    "Created: / 26-08-2017 / 13:37:51 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1503
!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1504
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1505
readTiledTiffImageData
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1506
    (compression == COMPRESSION_NONE " 1 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1507
        self readTiledUncompressedTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1508
        ^ self
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1509
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1510
    (compression == COMPRESSION_LZW " 5 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1511
        self readTiledLZWTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1512
        ^ self
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1513
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1514
    (compression == COMPRESSION_OJPEG " 6 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1515
        self readTiledJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1516
        ^ self
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1517
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1518
    (compression == COMPRESSION_JPEG " 7 ") ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1519
        self readTiledNewJPEGTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1520
        ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1521
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1522
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1523
    self fileFormatError:('tiled compression type ' , compression printString , ' not supported').
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1524
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1525
    "Created: / 25-08-2017 / 00:19:14 / cg"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1526
    "Modified: / 26-08-2017 / 13:39:15 / cg"
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1527
!
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1528
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1529
readTiledUncompressedTiffImageData
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1530
    |bytesPerRow     "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1531
     bitsPerRow      "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1532
     bytesPerTileRow "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1533
     bitsPerTileRow  "{ Class: SmallInteger }" 
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1534
     nPlanes 
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1535
     tileNr          "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1536
     "/ offset          "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1537
     "/ row             "{ Class: SmallInteger }" 
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1538
     nBytes          "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1539
     bitsPerPixel    "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1540
     overAllBytes    "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1541
     where           "{ Class: SmallInteger }"
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1542
     x               "{ Class: SmallInteger }"       
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1543
     y               "{ Class: SmallInteger }" 
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1544
     imageRowOffset  "{ Class: SmallInteger }" 
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1545
     imageOffset     "{ Class: SmallInteger }" 
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1546
     tileOffset      "{ Class: SmallInteger }"   
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1547
     dataOffset      "{ Class: SmallInteger }"   
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1548
     tilePos tile tH tW tb|
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1549
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1550
    nPlanes := samplesPerPixel.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1551
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1552
    "/ not all formats are supported here,
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1553
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1554
    (nPlanes == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1555
        (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1556
            ^ self fileFormatError:'with alpha, only separate planes supported'.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1557
        ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1558
        'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1559
        nPlanes := 1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1560
        bitsPerPixel := bitsPerSample at:1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1561
        bitsPerSample := Array with:bitsPerPixel.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1562
        samplesPerPixel := 1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1563
    ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1564
        (nPlanes == 4) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1565
            (planarConfiguration ~~ PLANARCONFIG_CONTIG) ifTrue:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1566
                ^ self fileFormatError:'only non separate planes supported'.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1567
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1568
            bitsPerSample ~= #(8 8 8 8) ifTrue:[
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1569
                ^ 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
  1570
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1571
            bitsPerPixel := 32.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1572
        ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1573
            (nPlanes == 3) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1574
                (planarConfiguration ~~ PLANARCONFIG_CONTIG) ifTrue:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1575
                    ^ self fileFormatError:'only non separate planes supported'.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1576
                ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1577
                bitsPerSample ~= #(8 8 8) ifTrue:[
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1578
                    ^ 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
  1579
                ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1580
                bitsPerPixel := 24
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1581
            ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1582
                (nPlanes ~~ 1) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1583
                    ^ self fileFormatError:('unsupported format: nplanes=' , nPlanes printString).
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1584
                ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1585
                bitsPerPixel := bitsPerSample at:1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1586
            ]
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1587
        ]
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1588
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1589
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1590
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1591
    ].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1592
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1593
    bitsPerRow := width * bitsPerPixel.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1594
    bytesPerRow := (bitsPerRow + 7) // 8.
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1595
    
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1596
    bitsPerTileRow := tileWidth * bitsPerPixel.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1597
    bytesPerTileRow := (bitsPerTileRow + 7) // 8.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1598
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1599
    overAllBytes := bytesPerRow * height.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1600
    data := ByteArray new:overAllBytes.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1601
    
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1602
    tileNr := 1.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1603
    where := -1.
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1604
    y := 0.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1605
    imageRowOffset := 1.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1606
    [ y < height ] whileTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1607
        tH := tileLength.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1608
        (y+tileLength) > height ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1609
            tH := height - y.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1610
        ].    
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1611
        x := 0.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1612
        imageOffset := imageRowOffset.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1613
        [ x < width ] whileTrue:[
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1614
            nBytes := tileByteCounts at:tileNr.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1615
            tilePos := tileOffsets at:tileNr.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1616
            tileNr := tileNr + 1.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1617
            
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1618
            where ~~ tilePos ifTrue:[
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1619
                inStream position:tilePos.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1620
                where := tilePos.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1621
            ].
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1622
            tile := ByteArray new:nBytes.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1623
            inStream nextBytes:nBytes into:tile startingAt:1 blockSize:4096.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1624
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1625
            "/ copy the tile.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1626
            tileOffset := 1.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1627
            dataOffset := imageOffset. 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1628
            tW := tileWidth.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1629
            tb := bytesPerTileRow.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1630
            (x+tileWidth) > width ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1631
                tW := width-x.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1632
                tb := ((bitsPerPixel * bitsPerPixel) + 7) // 8.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1633
            ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1634
            1 to:tH do:[:yT |
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1635
                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
  1636
                dataOffset := dataOffset + bytesPerRow.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1637
                tileOffset := tileOffset + bytesPerTileRow.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1638
            ].
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1639
            
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1640
            "/ offset := offset + nBytes.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1641
            "/ row := row + rowsPerStrip.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1642
            where := where + nBytes.
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1643
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1644
            x := x + tW.
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  1645
            imageOffset := imageOffset + bytesPerTileRow.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1646
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1647
        y := y + tH.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1648
        imageRowOffset := imageRowOffset + (bytesPerRow*tH).
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1649
    ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1650
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1651
    "Created: / 25-08-2017 / 00:22:31 / cg"
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  1652
    "Modified (comment): / 27-08-2017 / 20:42:18 / cg"
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1653
!
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  1654
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1655
readUncompressedTiffImageData
3610
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1656
    |bytesPerRow   "{ Class: SmallInteger }"
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1657
     bitsPerRow    "{ Class: SmallInteger }"
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1658
     nPlanes 
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1659
     stripNr       "{ Class: SmallInteger }"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1660
     offset        "{ Class: SmallInteger }"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1661
     row           "{ Class: SmallInteger }" 
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1662
     nBytes        "{ Class: SmallInteger }"
3610
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1663
     bitsPerPixel 
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1664
     overAllBytes  "{ Class: SmallInteger }"
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1665
     where         "{ Class: SmallInteger }"
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1666
     stripPos      |
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1667
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1668
    nPlanes := samplesPerPixel.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1669
1230
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1670
    "/ not all formats are supported here,
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1671
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1672
    (nPlanes == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1673
        (planarConfiguration ~~ PLANARCONFIG_SEPARATE) ifTrue:[
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1674
            ^ self fileFormatError:'with alpha, only separate planes supported'.
317
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1675
        ].
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  1676
        'TIFFReader [info]: ignoring alpha plane' infoPrintCR.
317
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1677
        nPlanes := 1.
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1678
        bitsPerPixel := bitsPerSample at:1.
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1679
        bitsPerSample := Array with:bitsPerPixel.
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1680
        samplesPerPixel := 1.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1681
    ] ifFalse:[
1230
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1682
        (nPlanes == 4) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1683
            (planarConfiguration ~~ PLANARCONFIG_CONTIG) ifTrue:[
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  1684
                ^ self fileFormatError:'only non separate planes supported'.
317
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1685
            ].
1230
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1686
            bitsPerSample ~= #(8 8 8 8) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1687
                bitsPerSample ~= #(16 16 16 16) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1688
                    ^ self fileFormatError:'only 8/8/8/8 and 16/16/16/16 images supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1689
                ].
317
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1690
            ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1691
            bitsPerPixel := bitsPerSample sum.
317
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1692
        ] ifFalse:[
1230
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1693
            (nPlanes == 3) ifTrue:[
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1694
                (planarConfiguration ~~ 1) ifTrue:[
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1695
                    ^ self fileFormatError:'only non separate planes supported'.
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1696
                ].
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1697
                bitsPerSample ~= #(8 8 8) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1698
                    bitsPerSample ~= #(16 16 16) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1699
                        ^ self fileFormatError:'only 8/8/8 and 16/16/16 images supported; is: ' , bitsPerSample printString.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1700
                    ].
1230
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1701
                ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1702
                bitsPerPixel := bitsPerSample sum.
1230
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1703
            ] ifFalse:[
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1704
                (nPlanes ~~ 1) ifTrue:[
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1705
                    ^ self fileFormatError:('unsupported format: nplanes=' , nPlanes printString).
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1706
                ].
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1707
                bitsPerPixel := bitsPerSample at:1.
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1708
            ]
317
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1709
        ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  1710
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1711
    stripRowCounts notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1712
        ^ self fileFormatError:'stripRowCounts not supported'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1713
    ].
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1714
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1715
    bitsPerRow := width * bitsPerPixel.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1716
    bytesPerRow := bitsPerRow // 8.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1717
    ((bitsPerRow \\ 8) ~~ 0) ifTrue:[
317
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1718
        bytesPerRow := bytesPerRow + 1
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
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1721
    overAllBytes := bytesPerRow * height.
1037
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1722
    bytesPerRow == width ifTrue:[
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1723
        data := ByteArray uninitializedNew:overAllBytes.
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1724
    ] ifFalse:[
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1725
        data := ByteArray new:overAllBytes.
90d38c8e3f5f use initialized byteArrays, in case rows are padded
Claus Gittinger <cg@exept.de>
parents: 918
diff changeset
  1726
    ].
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1727
336
9789b02d95bf oops - the very last pixel was not read (in readUncompressed ...)
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1728
    offset := 0.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1729
    stripNr := 0.
3610
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1730
    where := -1.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1731
    row := 1.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  1732
    [row <= height] whileTrue:[
317
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1733
        stripNr := stripNr + 1.
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1734
        nBytes := stripByteCounts at:stripNr.
3610
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1735
        stripPos := stripOffsets at:stripNr.
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1736
        where ~~ stripPos ifTrue:[
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1737
            inStream position:stripPos.
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1738
            where := stripPos.
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1739
        ].
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1740
        
317
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1741
        offset + nBytes > overAllBytes ifTrue:[
336
9789b02d95bf oops - the very last pixel was not read (in readUncompressed ...)
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1742
            nBytes := overAllBytes - offset.
317
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1743
        ].
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1744
563
38cbee875bfa read data in blocks - better if images are read from a CD
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
  1745
        "/ read it 4k-wise; this leads to a better behavior,
1748
0ad7db36c871 comment
Claus Gittinger <cg@exept.de>
parents: 1745
diff changeset
  1746
        "/ when reading big images from a slow device (such as a cdrom)
563
38cbee875bfa read data in blocks - better if images are read from a CD
Claus Gittinger <cg@exept.de>
parents: 520
diff changeset
  1747
        inStream nextBytes:nBytes into:data startingAt:offset+1 blockSize:4096.
1230
993aaef8a28a support reading of 4-plane cmyk uncompressed images.
Claus Gittinger <cg@exept.de>
parents: 1215
diff changeset
  1748
317
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1749
        offset := offset + nBytes.
3610
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1750
        row := row + rowsPerStrip.
e9326c841c48 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 3552
diff changeset
  1751
        where := where + nBytes.
1748
0ad7db36c871 comment
Claus Gittinger <cg@exept.de>
parents: 1745
diff changeset
  1752
    ].
317
5de89b17ed48 care for bad strip size (how can this happen ?)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  1753
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1754
    "Modified: / 27-08-2017 / 15:39:09 / cg"
440
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  1755
! !
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  1756
1762
55cf76514c8c method category rename
Claus Gittinger <cg@exept.de>
parents: 1759
diff changeset
  1757
!TIFFReader methodsFor:'private-reading'!
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  1758
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1759
decodePhotoshopImageResourceBlock:bytes
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1760
    "8BIM is the signature for Photoshop Image Resource Block (IRB). 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1761
     See http://www.adobe.com/devnet-apps/photoshop/fileformatashtml/#50577409_38034.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1762
     
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1763
     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
  1764
     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
  1765
     The structure of the IRB is as follows:
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1766
     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
  1767
     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
  1768
     For example: 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1769
        0x040c for thumbnail; 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1770
        0x041a for slices; 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1771
        0x0408 for grid information; 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1772
        0x040f for ICC Profile etc.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1773
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1774
     After the identifier is a variable length string for name. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1775
     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
  1776
     After the first byte comes the string itself. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1777
     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
  1778
     Otherwise, pad one more byte after the string.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1779
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1780
     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
  1781
     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
  1782
     This finishes a whole 8BIM.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1783
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1784
     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
  1785
     How to interpret the data depends on the unique identifier.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1786
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1787
     Now let's see how the IRBs are include in images. 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1788
     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
  1789
     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
  1790
     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
  1791
     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
  1792
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1793
     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
  1794
     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
  1795
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1796
    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
  1797
    0x03E9 Macintosh print manager print info record
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1798
    0x03EA Macintosh page format information. No longer read by Photoshop. (Obsolete)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1799
    0x03EB Obsolete--Photoshop 2.0 only ) Indexed color table
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1800
    0x03ED ResolutionInfo structure. See Appendix A in Photoshop API Guide.pdf.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1801
    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
  1802
    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
  1803
    0x03F0 The caption as a Pascal string.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1804
    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
  1805
    0x03F2 Background color. See See Color structure.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1806
    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
  1807
    0x03F4 Grayscale and multichannel halftoning information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1808
    0x03F5 Color halftoning information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1809
    0x03F6 Duotone halftoning information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1810
    0x03F7 Grayscale and multichannel transfer function
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1811
    0x03F8 Color transfer functions
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1812
    0x03F9 Duotone transfer functions
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1813
    0x03FA Duotone image information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1814
    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
  1815
    0x03FC (Obsolete)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1816
    0x03FD EPS options
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1817
    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
  1818
    0x03FF (Obsolete)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1819
    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
  1820
    0x0401 Working path (not saved). See See Path resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1821
    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
  1822
    0x0403 (Obsolete)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1823
    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
  1824
    0x0405 Image mode for raw format files
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1825
    0x0406 JPEG quality. Private.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1826
    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
  1827
    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
  1828
    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
  1829
    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
  1830
    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
  1831
    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
  1832
    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
  1833
    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
  1834
    0x0410 (Photoshop 5.0) Watermark. One byte.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1835
    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
  1836
    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
  1837
    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
  1838
    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
  1839
    0x0415 (Photoshop 5.0) Unicode Alpha Names. Unicode string
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1840
    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
  1841
    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
  1842
    0x0419 (Photoshop 6.0) Global Altitude. 4 byte entry for altitude
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1843
    0x041A (Photoshop 6.0) Slices. See See Slices resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1844
    0x041B (Photoshop 6.0) Workflow URL. Unicode string
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1845
    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
  1846
    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
  1847
    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
  1848
    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
  1849
    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
  1850
    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
  1851
    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
  1852
    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
  1853
    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
  1854
    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
  1855
    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
  1856
    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
  1857
    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
  1858
    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
  1859
    0x042E (Photoshop CS2) HDR Toning information
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1860
    0x042F (Photoshop CS2) Print info
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1861
    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
  1862
    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
  1863
    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
  1864
    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
  1865
    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
  1866
    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
  1867
    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
  1868
    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
  1869
    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
  1870
    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
  1871
    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
  1872
    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
  1873
    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
  1874
    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
  1875
    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
  1876
    0x07D0-0x0BB6 Path Information (saved paths). See See Path resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1877
    0x0BB7 Name of clipping path. See See Path resource format.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1878
    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
  1879
    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
  1880
    0x1B58 Image Ready variables. XML representation of variables definition
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1881
    0x1B59 Image Ready data sets
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1882
    0x1B5A Image Ready default selected state
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1883
    0x1B5B Image Ready 7 rollover expanded state
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1884
    0x1B5C Image Ready rollover expanded state
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1885
    0x1B5D Image Ready save layer settings
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1886
    0x1B5E Image Ready version
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1887
    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
  1888
    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
  1889
    "
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1890
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1891
    |s id name len resource record|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1892
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1893
    record := OrderedCollection new.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1894
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1895
    s := bytes readStream.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1896
    [s atEnd] whileFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1897
        (s next:4) asString = '8BIM' ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1898
            id := s nextUnsignedInt16MSB.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1899
            name := s upTo:0.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1900
            name size odd ifFalse:[ s next ]. "/ padding
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1901
            len := s nextUnsignedInt32MSB.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1902
            resource := s next:len.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1903
            Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1904
                Transcript showCR:('      8BIM-%1: %2' bindWith:(id hexPrintString:4) with:resource).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1905
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1906
            record add:(Dictionary new
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1907
                            at:#id put:id;
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1908
                            at:#name put:name;
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1909
                            at:#resource put:resource;
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1910
                            yourself).                    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1911
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1912
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1913
    metaData at:#'PhotoshopIRB' put:record.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1914
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1915
    "Created: / 27-08-2017 / 17:12:25 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1916
    "Modified: / 27-08-2017 / 18:14:56 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1917
!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  1918
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1919
decodeTiffTag:tagType numberType:numberType length:length
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1920
    |offset value valueArray 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1921
     val scaleFactor rV gV bV
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1922
     n  "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1923
     i2 "{ Class: SmallInteger }"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1924
     i3 "{ Class: SmallInteger }" |
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1925
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1926
    Verbose == true ifTrue:[ Logger info:'tiffTag: %1' with:tagType ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1927
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1928
    (numberType == 3 "TIFF_SHORT") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1929
        "16 bit ushort"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1930
        valueArray := self readShorts:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1931
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1932
    ] ifFalse:[(numberType == 4 "TIFF_LONG") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1933
        "32 bit uinteger"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1934
        valueArray := self readLongs:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1935
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1936
    ] ifFalse:[(numberType == 2 "TIFF_ASCII") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1937
        "ascii characters"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1938
        value := self readChars:length
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1939
    ] ifFalse:[(numberType == 5 "TIFF_RATIONAL") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1940
        "64 (32+32) bit ufraction"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1941
        valueArray := self readFracts:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1942
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1943
    ] ifFalse:[(numberType == 1 "TIFF_BYTE") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1944
        "8bit uinteger"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1945
        value := self readBytes:length signed:false
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1946
    ] ifFalse:[(numberType == 6 "TIFF_SBYTE") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1947
        "TIFF6: 8bit signed integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1948
        value := self readBytes:length  signed:true
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1949
    ] ifFalse:[(numberType == 8 "TIFF_SSHORT") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1950
        "TIFF6: 16bit signed integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1951
        valueArray := self readShorts:length signed:true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1952
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1953
    ] ifFalse:[(numberType == 9 "TIFF_SLONG") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1954
        "TIFF6: 32bit signed integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1955
        valueArray := self readLongs:length signed:true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1956
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1957
    ] ifFalse:[(numberType == 10 "TIFF_SRATIONAL") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1958
        "TIFF6: 64 (32+32) bit signed fraction"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1959
        valueArray := self readFracts:length signed:true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1960
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1961
    ] ifFalse:[(numberType == 11 "TIFF_FLOAT") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1962
        "TIFF6: 32 bit IEEE float"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1963
        valueArray := self readFloats:length.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1964
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1965
    ] ifFalse:[(numberType == 12 "TIFF_DOUBLE") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1966
        "TIFF6: 64 bit IEEE double"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1967
        valueArray := self readDoubles:length.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1968
        value := valueArray at:1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1969
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1970
    ] ifFalse:[(numberType == 7 "TIFF_UNDEFINED") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1971
        "8bit anything"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1972
        value := self readBytes:length signed:false
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1973
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1974
    "/ the following are preps for the propsed bigTiff format    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1975
    ] ifFalse:[(numberType == 16 "TIFF_LONG8") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1976
        "BIGTIFF: 8-byte unsigned integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1977
        valueArray := self readLong8s:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1978
        value := valueArray at:1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1979
    ] ifFalse:[(numberType == 17 "TIFF_SLONG8") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1980
        "BIGTIFF: 8-byte signed integer"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1981
        valueArray := self readLong8s:length signed:true.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1982
        value := valueArray at:1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1983
    ] ifFalse:[(numberType == 18 "TIFF_IFD8") ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1984
        "BIGTIFF: 8-byte unsigned IFD offset"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1985
        valueArray := self readLong8s:length signed:false.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1986
        value := valueArray at:1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1987
    ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1988
        isBigTiff ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1989
            offset := (inStream nextInt64MSB:(byteOrder ~~ #lsb))
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1990
        ] ifFalse:[    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1991
            offset := (inStream nextInt32MSB:(byteOrder ~~ #lsb))
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1992
        ]
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1993
    ]]]]]]]]]]]]]]].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1994
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1995
    (tagType between:200 and:299) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1996
        (tagType == 254) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1997
            "/ New SubfileType
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1998
            "/      REDUCEDIMAGE    -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  1999
            "/      PAGE            -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2000
            "/      MASK            -> 4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2001
            "newSubFileType := value."
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2002
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2003
            "/ 'newSubfiletype ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2004
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2005
                Logger info:'      newSubfiletype: %1' with:value
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2006
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2007
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2008
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2009
        (tagType == 255) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2010
            "/ Old SubfileType
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2011
            "/      IMAGE           -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2012
            "/      REDUCEDIMAGE    -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2013
            "/      PAGE            -> 3
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2014
            subFileType := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2015
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2016
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2017
                Logger info:'      oldSubfiletype: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2018
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2019
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2020
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2021
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2022
        (tagType == 256) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2023
            "ImageWidth"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2024
            width := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2025
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2026
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2027
                Logger info:'      width: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2028
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2029
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2030
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2031
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2032
        (tagType == 257) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2033
            "ImageHeight"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2034
            height := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2035
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2036
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2037
                Logger info:'      height: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2038
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2039
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2040
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2041
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2042
        (tagType == 258) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2043
            "bitspersample"  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2044
             bitsPerSample := valueArray.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2045
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2046
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2047
                Logger info:'      bitspersample: %1' with:valueArray 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2048
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2049
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2050
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2051
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2052
        (tagType == 259) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2053
            "/ compression
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2054
            "/      NONE            -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2055
            "/      CCITTRLE        -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2056
            "/      CCITTFAX3       -> 3
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2057
            "/      CCITTFAX4       -> 4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2058
            "/      LZW             -> 5
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2059
            "/      OJPEG           -> 6 (old style jpeg)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2060
            "/      JPEG            -> 7 (new style jpeg)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2061
            "/      ADOBE_DEFLATE   -> 8
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2062
            "/      JBIG            -> 9 (ITU-T T85)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2063
            "/      JBIG            -> 10 (ITU-T T43)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2064
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2065
            "/      NEXT            -> 32766 (NeXT 2-bit encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2066
            "/      CCITTRLEW       -> 32771
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2067
            "/      PACKBITS        -> 32773
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2068
            "/      THUNDERSCAN     -> 32809 (ThunderScan 4-bit encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2069
            "/      IT8CTPAD        -> 32895  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2070
            "/      IT8LW           -> 32896  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2071
            "/      IT8MP           -> 32897  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2072
            "/      IT8BL           -> 32898  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2073
            "/      PIXARFILM       -> 32908
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2074
            "/      PIXARLOG        -> 32909 (Pixar companded 11-bit ZIP encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2075
            "/      DEFLATE         -> 32946 (PKZIP-style Deflate encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2076
            "/      DCS             -> 32947 (kodac)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2077
            "/      JBIG            -> 34661
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2078
            "/      SGI32           -> 34676 (SGI 32-bit Log Luminance encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2079
            "/      SGI24           -> 34677 (SGI 24-bit Log Luminance encoding)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2080
            "/      JPEG2000        -> 34712 JPEG2000
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2081
            "/      NIKON_NEF       -> 34713 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2082
            "/      JBIG2           -> 34715 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2083
            compression := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2084
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2085
            Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2086
                |s|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2087
                s := (Dictionary withKeyValuePairs:
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2088
                        #( (1 uncompressed)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2089
                            (2 CCITTRLE)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2090
                            (3 CCITTFAX3)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2091
                            (4 CCITTFAX4)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2092
                            (5 LZW)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2093
                            (6 OJPEG)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2094
                            (7 JPEG)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2095
                            (8 ADOBE_DEFLATE)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2096
                            (9 JBIG_T85)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2097
                            (10 JBIG_T43)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2098
                            (32766 NEXT)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2099
                            (32771 CCITTRLEW)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2100
                            (32773 PACKBITS)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2101
                            (32809 THUNDERSCAN)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2102
                            (32895 IT8CTPAD)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2103
                            (32896 IT8LW)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2104
                            (32897 IT8MP)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2105
                            (32898 IT8BL)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2106
                            (32908 PIXARFILM)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2107
                            (32909 PIXARLOG)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2108
                            (32946 DEFLATE)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2109
                            (32947 DCS)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2110
                            (34661 JBIG)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2111
                            (34676 SGI32)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2112
                            (34677 SGI24)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2113
                            (34712 JPEG2000)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2114
                            (34713 NIKON_NEF)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2115
                            (34715 JBIG2) 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2116
                        )) at:value ifAbsent:'???'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2117
                Logger info:'      compression: %1 (=%2)' with:value with:s.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2118
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2119
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2120
        ].
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2121
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2122
        (tagType == 262) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2123
            "photometric"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2124
            |p|
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2125
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2126
            (value between:0 and:10) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2127
                p := 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2128
                    #(
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2129
                        whiteIs0            "/  0 - grayscale or monochrome; faxes
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2130
                        blackIs0            "/  1 - grayscale or monochrome; faxes
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2131
                        rgb                 "/  2
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2132
                        palette             "/  3
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2133
                        transparencyMask    "/  4
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2134
                        cmyk                "/  5 - color separations
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2135
                        YCbCr               "/  6 - CCIR 601
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2136
                        nil                 "/  7
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2137
                        CIElab              "/  8 - 1976 CIE L*a*b*
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2138
                        ICClab              "/  9 - ICC L*a*b*
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2139
                        ITUlab              "/ 10 - see ITO-T- Rec T42 (RFC 2301)
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2140
                    ) at:(value + 1)    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2141
            ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2142
                (value == 32803) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2143
                    p := #ColorFilterArray    "/ camera rw format
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2144
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2145
                (value == 32844) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2146
                    p := #PixarLogL   
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2147
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2148
                (value == 32845) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2149
                    p := #PixarLogLuv    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2150
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2151
                (value == 34892) ifTrue:[
3980
209cd9407fe9 oops: compilability!
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
  2152
                    p := #LinearRaw           "/ camera rw format
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2153
                ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2154
            ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2155
            photometric := p.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2156
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2157
                Logger info:'      photometric: %1 (=%2)' with:value with:photometric
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2158
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2159
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2160
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2161
        (tagType == 263) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2162
            "/ Thresholding
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2163
            "/      BILEVEL         -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2164
            "/      HALFTONE        -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2165
            "/      ERRORDIFFUSE    -> 3
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2166
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2167
            "thresholding := value."
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2168
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2169
            "/ 'thresholding ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2170
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2171
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2172
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2173
        (tagType == 264) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2174
            "CellWidth"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2175
            "/ 'cellWidth ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2176
            metaData at:#CellWidth put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2177
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2178
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2179
        (tagType == 265) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2180
            "CellLength"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2181
            "/ 'cellLength ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2182
            metaData at:#CellLength put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2183
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2184
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2185
        (tagType == 266) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2186
            "fillOrder"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2187
            (value == 1) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2188
                fillOrder := #msb
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2189
            ] ifFalse:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2190
                (value == 2) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2191
                    fillOrder := #lsb
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2192
                ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2193
                    fillOrder := nil
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2194
                ]
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2195
            ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2196
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2197
                Logger info:'      fillorder: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2198
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2199
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2200
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2201
        (tagType == 269) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2202
            "documentName - info only"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2203
            metaData at:#DocumentName put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2204
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2205
                Logger info:'      documentName: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2206
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2207
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2208
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2209
        (tagType == 270) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2210
            "imageDescription - info only"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2211
            metaData at:#ImageDescription put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2212
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2213
                Logger info:'      imageDescription: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2214
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2215
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2216
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2217
        (tagType == 271) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2218
            "make - info only"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2219
            metaData at:#Make put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2220
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2221
                Logger info:'      make: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2222
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2223
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2224
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2225
        (tagType == 272) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2226
            "model - info only"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2227
            metaData at:#Model put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2228
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2229
                Logger info:'      model: %1' with:value
3979
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
            ^ self
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 == 273) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2234
            "stripOffsets"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2235
            stripOffsets := valueArray.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2236
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2237
                Logger info:'      stripOffsets: %1' with:valueArray 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2238
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2239
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2240
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2241
        (tagType == 274) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2242
            "Orientation"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2243
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2244
            orientation :=
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2245
                            #( nil          "/ 1 normal (topLeft)
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2246
                               hFlip        "/ 2 horizontal flip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2247
                               hvFlip       "/ 3 horizontal & vertical flip
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2248
                               vFlip        "/ 4 vertical flip
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2249
                               rot90ccw     "/ 5 rot 90' counter clock-wise
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2250
                               rot90        "/ 6 rot 90' clock-wise
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2251
                               rot90flip    "/ 7 rot 90' & flip
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2252
                               rot90ccwFlip "/ 8 rot 90' ccw & flip
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2253
                             ) at:value ifAbsent:#unsupported.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2254
            metaData at:#Orientation put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2255
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2256
                Logger info:'      orientation: %1 (=%2)' with:value with:(orientation ? #normal)
3979
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 == 277) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2261
            samplesPerPixel := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2262
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2263
                Logger info:'      samplesperpixel: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2264
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2265
            ^ self
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
        (tagType == 278) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2268
            rowsPerStrip := value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2269
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2270
                Logger info:'      rowsPerStrip: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2271
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2272
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2273
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2274
        (tagType == 279) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2275
            "stripbytecount"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2276
            stripByteCounts := valueArray.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2277
            "/        'stripByteCounts Array(' print. 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2278
            "/        stripByteCounts size print.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2279
            "/        ')' printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2280
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2281
                Logger info:'      stripByteCounts: %1' with:valueArray 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2282
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2283
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2284
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2285
        (tagType == 280) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2286
            "/ minSampleValue
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2287
            metaData at:#MinSampleValue put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2288
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2289
                Logger info:'      minSampleValue: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2290
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2291
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2292
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2293
        (tagType == 281) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2294
            "/ maxSampleValue
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2295
            metaData at:#MaxSampleValue put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2296
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2297
                Logger info:'      maxSampleValue: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2298
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2299
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2300
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2301
        (tagType == 282) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2302
            "/ xResolution
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2303
            metaData at:#ResolutionX put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2304
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2305
                Logger info:'      xResolution: %1 (%2)' with:value with:value asFloat 
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2306
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2307
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2308
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2309
        (tagType == 283) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2310
            "/ yResolution
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2311
            metaData at:#ResolutionY put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2312
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2313
                Logger info:'      yResolution: %1 (%2)' with:value with:value asFloat 
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2314
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2315
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2316
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2317
        (tagType == 284) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2318
            (value == 1) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2319
                planarConfiguration := PLANARCONFIG_CONTIG
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2320
            ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2321
                (value == 2) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2322
                    planarConfiguration := PLANARCONFIG_SEPARATE
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2323
                ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2324
                    planarConfiguration := nil
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2325
                ]
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2326
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2327
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2328
                Logger info:'      planarConfiguration: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2329
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2330
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2331
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2332
        (tagType == 285) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2333
            "/ 'pageName ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2334
            metaData at:#PageName put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2335
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2336
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2337
        (tagType == 286) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2338
            "/ xPosition
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2339
            metaData at:#PositionX put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2340
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2341
                Logger info:'      xPosition: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2342
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2343
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2344
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2345
        (tagType == 287) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2346
            "/ yPosition
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2347
            metaData at:#PositionY put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2348
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2349
                Logger info:'      yPosition: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2350
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2351
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2352
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2353
        (tagType == 288) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2354
            "/ 'freeOffsets ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2355
            ^ self
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
        (tagType == 289) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2358
            "/ 'freeByteCounts ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2359
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2360
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2361
        (tagType == 290) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2362
            "/ 'grayResponceUnit' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2363
            metaData at:#GrayResponceUnit put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2364
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2365
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2366
        (tagType == 291) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2367
            "/ 'grayResponceCurve' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2368
            metaData at:#GrayResponceCurve put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2369
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2370
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2371
        (tagType == 292) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2372
            "/ group3options (now called T4Options)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2373
            "/      2DENCODING      -> 1
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2374
            "/      UNCOMPRESSED    -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2375
            "/      FILLBITS        -> 4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2376
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2377
            group3options := value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2378
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2379
                Logger info:'      group3options: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2380
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2381
            ^ self
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
        (tagType == 293) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2384
            "/ group4options (now called T6Options)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2385
            "/      UNCOMPRESSED    -> 2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2386
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2387
            "/ group4options := value.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2388
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2389
                Logger info:'      group4options: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2390
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2391
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2392
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2393
        (tagType == 296) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2394
            "resolutionunit"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2395
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2396
            "/        (value == 1) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2397
            "/            'res-unit pixel' printNewline
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2398
            "/        ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2399
            "/            (value == 2) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2400
            "/                'res-unit inch' printNewline
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2401
            "/            ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2402
            "/                (value == 3) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2403
            "/                    'res-unit mm' printNewline
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2404
            "/                ] ifFalse:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2405
            "/                    'res-unit invalid' printNewline
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
            "/            ]
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
            metaData at:#ResolutionUnit put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2410
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2411
                Logger info:'      resolutionUnit: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2412
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2413
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2414
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2415
        (tagType == 297) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2416
            "/ 'pageNumber ' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2417
            metaData at:#PageNumber put:value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2418
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2419
                Logger info:'      PageNumber: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2420
            ].
3979
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
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2424
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2425
    (tagType between:300 and:399) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2426
        (tagType == 300) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2427
            "/ 'colorResponceUnit' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2428
            metaData at:#ColorResponceUnit put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2429
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2430
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2431
        (tagType == 301) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2432
            "/ 'colorResponceCurve' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2433
            metaData at:#ColorResponceCurve put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2434
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2435
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2436
        (tagType == 305) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2437
            "software - info only"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2438
            metaData at:#Software put:value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2439
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2440
                Logger info:'      software: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2441
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2442
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2443
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2444
        (tagType == 306) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2445
            "dateTime - info only"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2446
            metaData at:#DateTime put:value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2447
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2448
                Logger info:'      dateTime: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2449
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2450
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2451
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2452
        (tagType == 315) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2453
            "artist - info only"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2454
            metaData at:#Artist put:value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2455
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2456
                Logger info:'      artist: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2457
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2458
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2459
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2460
        (tagType == 316) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2461
            "host computer - info only"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2462
            metaData at:#HostComputer put:value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2463
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2464
                Logger info:'      host: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2465
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2466
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2467
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2468
        (tagType == 317) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2469
            "/ predictor
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2470
            "/ 1 -> no predictor
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2471
            "/ 2 -> horiz. difference (see tiff spec 6.0)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2472
            "/ 3 -> flt pnt (see adobe tech notes)
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2473
            "/ 34892 -> horiz difference x2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2474
            "/ 34893 -> horiz difference x4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2475
            "/ 34894 -> flt pnt x2
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2476
            "/ 34895 -> flt pnt x4
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2477
            predictor := value.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2478
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2479
                Logger info:'      predictor: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2480
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2481
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2482
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2483
        (tagType == 318) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2484
            "/ whitePoint
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2485
            metaData at:#WhitePoint put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2486
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2487
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2488
        (tagType == 319) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2489
            "/ primaryChromatics
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2490
            metaData at:#PrimaryChromatics put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2491
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2492
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2493
        (tagType == 320) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2494
            "/ 'colorMap (size=' print. valueArray size print. ')' printNewline.
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
            "
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2497
             the tiff colormap contains 16bit values;
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2498
             our colormap expects 8bit values
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2499
            "
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2500
            n := valueArray size // 3.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2501
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2502
            rV := ByteArray uninitializedNew:n.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2503
            gV := ByteArray uninitializedNew:n.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2504
            bV := ByteArray uninitializedNew:n.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2505
            scaleFactor := 255.0 / 16rFFFF.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2506
            i2 := n+1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2507
            i3 := 2*n+1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2508
            1 to:n do:[:vi |
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2509
                val := ((valueArray at:vi) * scaleFactor) rounded.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2510
                rV at:vi put:val.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2511
                val := ((valueArray at:i2) * scaleFactor) rounded.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2512
                gV at:vi put:val.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2513
                val := ((valueArray at:i3) * scaleFactor) rounded.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2514
                bV at:vi put:val.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2515
                i2 := i2 + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2516
                i3 := i3 + 1.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2517
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2518
            colorMap := MappedPalette redVector:rV greenVector:gV blueVector:bV.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2519
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2520
                Logger info:'      colormap: ...'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2521
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2522
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2523
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2524
        (tagType == 321) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2525
            "/ halftonehints
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2526
            metaData at:#HalftoneHints put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2527
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2528
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2529
        (tagType == 322) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2530
            "/ tilewidth
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2531
            tileWidth := value.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2532
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2533
                Logger info:'      tileWidth: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2534
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2535
            (tileWidth \\ 16) == 0 ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2536
                Logger warning:'TIFFReader: tile width is not a multiple of 16'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2537
            ].    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2538
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2539
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2540
        (tagType == 323) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2541
            "/ tilelength (height)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2542
            tileLength := value.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2543
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2544
                Logger info:'      tileLength: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2545
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2546
            (tileLength \\ 16) == 0 ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2547
                Logger warning:'TIFFReader: tile height is not a multiple of 16'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2548
            ].    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2549
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2550
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2551
        (tagType == 324) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2552
            "/ tileoffsets
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2553
            tileOffsets := valueArray.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2554
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2555
                Logger info:'      tileOffsets: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2556
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2557
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2558
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2559
        (tagType == 325) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2560
            "/ tilebytecounts
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2561
            tileByteCounts := valueArray.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2562
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2563
                Logger info:'      tileByteCounts: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2564
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2565
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2566
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2567
        (tagType == 326) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2568
            "/ badFaxLines
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2569
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2570
                Logger info:'      badFaxLines: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2571
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2572
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2573
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2574
        (tagType == 327) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2575
            "CleanFaxData"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2576
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2577
                "/        'cleanfaxdata' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2578
                "/        (value == 0) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2579
                "/            'no lines with incorrect pixel counts' printNewline
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2580
                "/        ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2581
                "/            (value == 1) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2582
                "/                'incorrect lines were regenerated' printNewline
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2583
                "/            ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2584
                "/                (value == 2) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2585
                "/                    'incorrect lines were not regenerated' printNewline
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2586
                "/                ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2587
                "/                    'cleanfaxdata invalid' printNewline
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2588
                "/                ]
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2589
                "/            ]
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2590
                "/        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2591
                Logger info:'      cleanfaxdata: %1' with:value  
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2592
            ].
3979
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 == 328) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2596
            "/ consecutiveBadFaxLines
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2597
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2598
                Logger info:'      consecutiveBadFaxLines: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2599
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2600
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2601
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2602
        (tagType == 330) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2603
            "/ subifd
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2604
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2605
                Logger info:'      subifd: %1' with:valueArray 
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2606
            ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2607
            subIfds := valueArray. 
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2608
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2609
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2610
        (tagType == 332) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2611
            "/ 'ink set' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2612
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2613
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2614
        (tagType == 333) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2615
            "/ 'ink names' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2616
            metaData at:#IncNames put:value.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2617
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2618
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2619
        (tagType == 334) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2620
            "/ 'numinks' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2621
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2622
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2623
        (tagType == 336) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2624
            "/ 'dot range' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2625
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2626
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2627
        (tagType == 337) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2628
            "/ 'target printer' print. value printNewline.
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 == 338) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2632
            "/ 'extrasamples' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2633
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2634
                Logger info:'      extrasamples: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2635
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2636
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2637
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2638
        (tagType == 339) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2639
            "/ 'sample format' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2640
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2641
                Logger info:'      sample format: %1 (=%2)' 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2642
                            with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2643
                            with:(#( uint int float undef ) at:value ifAbsent:'???')
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2644
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2645
            sampleFormat := value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2646
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2647
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2648
        (tagType == 340) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2649
            "/ 'min sample value' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2650
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2651
                Logger info:'      min sample value: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2652
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2653
            minSampleValue := value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2654
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2655
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2656
        (tagType == 341) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2657
            "/ 'max sample value' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2658
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2659
                Logger info:'      max sample value: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2660
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2661
            maxSampleValue := value.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2662
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2663
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2664
        (tagType == 342) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2665
            "/ 'transfer range' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2666
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2667
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2668
        (tagType == 343) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2669
            "/ 'clip path' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2670
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2671
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2672
        (tagType == 344) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2673
            "/ 'xclip path units' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2674
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2675
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2676
        (tagType == 345) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2677
            "/ 'yclip path units' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2678
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2679
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2680
        (tagType == 346) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2681
            "/ 'indexed' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2682
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2683
        ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2684
        (tagType == 347) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2685
            "/ 'jpegtables' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2686
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2687
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2688
        (tagType == 351) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2689
            "/ opiproxy
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2690
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2691
        ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2692
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2693
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2694
    (tagType between:400 and:499) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2695
        (tagType == 400) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2696
            "/ 'GlobalParametersIFD' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2697
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2698
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2699
        (tagType == 401) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2700
            "/ 'ProfileType' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2701
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2702
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2703
        (tagType == 402) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2704
            "/ 'FaxProfile' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2705
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2706
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2707
        (tagType == 403) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2708
            "/ 'CodingMethods' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2709
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2710
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2711
        (tagType == 404) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2712
            "/ 'VersionYear' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2713
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2714
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2715
        (tagType == 405) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2716
            "/ 'ModeNumber' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2717
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2718
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2719
        (tagType == 433) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2720
            "/ 'Decode' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2721
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2722
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2723
        (tagType == 434) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2724
            "/ 'DefaultImageColor' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2725
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2726
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2727
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2728
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2729
    (tagType between:500 and:599) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2730
        "/ obsolete JPEG tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2731
        (tagType == 512) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2732
            "/ 'jpeg proc' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2733
            ^ self
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
        (tagType == 513) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2736
            "/ 'jpeg proc' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2737
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2738
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2739
        (tagType == 514) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2740
            "/ 'jpeg ifByteCount' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2741
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2742
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2743
        (tagType == 515) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2744
            "/ 'jpeg restartInterval' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2745
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2746
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2747
        (tagType == 517) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2748
            "/ 'jpeg glossLessPredictors' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2749
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2750
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2751
        (tagType == 518) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2752
            "/ 'jpeg pointTransform' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2753
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2754
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2755
        (tagType == 519) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2756
            "/ 'jpeg qTables' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2757
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2758
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2759
        (tagType == 520) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2760
            "/ 'jpeg dcTables' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2761
             ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2762
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2763
        (tagType == 521) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2764
            "/ 'jpeg acTables' print. value printNewline.
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
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2768
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2769
        (tagType == 529) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2770
            "/ ycbr coeff
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2771
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2772
                Logger info:'      ycbr coeff: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2773
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2774
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2775
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2776
        (tagType == 530) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2777
            "/ ycbr subsampling
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2778
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2779
                Logger info:'      ycbr subsampling: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2780
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2781
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2782
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2783
        (tagType == 531) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2784
            "/ ycbr positioning
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2785
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2786
                Logger info:'      ycbr positioning: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2787
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2788
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2789
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2790
        (tagType == 532) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2791
            "/ referenceBlackWhite
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2792
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2793
                Logger info:'      referenceBlackWhite: %1' with:value 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2794
            ].
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 == 559) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2798
            "/ stripRowCounts
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2799
            "/ Defined in the Mixed Raster Content part of RFC 2301, 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2800
            "/ used to replace RowsPerStrip for IFDs with variable-sized strips.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2801
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2802
                Logger info:'      stripRowCounts: %1' with:valueArray 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2803
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2804
            stripRowCounts := valueArray.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2805
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2806
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2807
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2808
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2809
    (tagType between:700 and:799) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2810
        (tagType == 700) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2811
            "XMP metadata (xml)"
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2812
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2813
            "/ 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
  2814
            "/ 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
  2815
            "/ 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
  2816
            "/ XML Packets
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2817
            
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2818
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2819
                Logger info:'      XMLPACKET: %1' with:value asString
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2820
            ].
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  2821
            decodeMetaTags == true ifTrue:[
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  2822
                metaData at:#xmpData put:value asString.
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  2823
            ].    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2824
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2825
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2826
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2827
    
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2828
    (tagType between:18000 and:18999) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2829
        (tagType == 18246) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2830
            "/ Image Rating by windows
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2831
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2832
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2833
        (tagType == 18249) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2834
            "/ Image Rating Percent by windows
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2835
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2836
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2837
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2838
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2839
    (tagType between:32000 and:32999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2840
        (tagType == 32781) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2841
            "/'imageid' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2842
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2843
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2844
        (tagType == 32932) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2845
            "/'wang annotation' print. value printNewline.
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
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2849
        "/ Private Island graphics tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2850
        (tagType == 32953) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2851
            "/'ref points' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2852
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2853
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2854
        (tagType == 32954) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2855
            "/ 'regionTagPoint' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2856
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2857
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2858
        (tagType == 32955) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2859
            "/ 'regionWarpCorners' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2860
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2861
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2862
        (tagType == 32956) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2863
            "/ 'regionAffine' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2864
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2865
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2866
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2867
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2868
        "/ Private SGI tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2869
        (tagType == 32995) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2870
            "/ 'matteing' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2871
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2872
        ].
3984
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
        (tagType == 32996) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2875
            "/ datatype
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2876
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2877
                Logger info:'      datatype: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2878
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2879
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2880
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2881
        (tagType == 32997) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2882
            "/ imagedepth
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2883
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2884
                Logger info:'      imagedepth: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2885
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2886
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2887
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2888
        (tagType == 32998) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2889
            "/ tiledepth
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2890
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2891
                Logger info:'      tiledepth: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2892
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2893
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2894
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2895
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2896
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2897
    (tagType between:33000 and:33999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2898
        "/ Private Pixar tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2899
        (tagType == 33300) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2900
            "/ 'image full width' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2901
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2902
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2903
        (tagType == 33301) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2904
            "/ 'image full length' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2905
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2906
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2907
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2908
        "/ Private Eastman Kodak tags
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2909
        (tagType == 33405) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2910
            "/ 'write serial number' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2911
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2912
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2913
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2914
        (tagType == 33421) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2915
            "/ CFARepeatPatternDim - For camera raw files from sensors with CFA overlay
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2916
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2917
                Logger info:'      CFARepeatPatternDim: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2918
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2919
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2920
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2921
        (tagType == 33422) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2922
            "/ CFAPattern - For camera raw files from sensors with CFA overlay
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2923
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2924
                Logger info:'      CFAPattern: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2925
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2926
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2927
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2928
        (tagType == 33423) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2929
            "/ BatteryLevel - Encodes camera battery level at time of image capture
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2930
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2931
        ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2932
        (tagType == 33432) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2933
            "/ 'copyright' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2934
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2935
        ].
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 == 33550) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2938
            "/ 'geotiff modelpixelscaletag' 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
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2942
        (tagType == 33723) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2943
            "/ 'RICHTIFFIPTC' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2944
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2945
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2946
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2947
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2948
        (tagType == 33920) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2949
            "/ 'geotiff IntergraphMatrixTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2950
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2951
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2952
        (tagType == 33922) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2953
            "/ 'geotiff ModelTiepointTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2954
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2955
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2956
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2957
    ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2958
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  2959
    (tagType between:34000 and:34999) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2960
        (tagType == 34016) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2961
            "/ Site
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2962
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2963
                Logger info:'      site: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2964
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2965
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2966
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2967
        (tagType == 34017) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2968
            "/ colorSequence
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2969
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2970
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2971
        (tagType == 34018) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2972
            "/ it8header
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2973
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2974
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2975
        (tagType == 34019) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2976
            "/ rasterPadding
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2977
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2978
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2979
        (tagType == 34020) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2980
            "/ bitsPerRunLength
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2981
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2982
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2983
        (tagType == 34021) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2984
            "/ bitsPerExtendedRunLength
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2985
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2986
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2987
        (tagType == 34022) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2988
            "/ colorTable
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2989
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2990
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2991
        (tagType == 34023) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2992
            "/ imageColorIndicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2993
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2994
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2995
        (tagType == 34024) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2996
            "/ backgroundColorIndicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2997
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2998
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  2999
        (tagType == 34025) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3000
            "/ imageColorValue
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3001
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3002
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3003
        (tagType == 34026) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3004
            "/ backgroundColorValue
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3005
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3006
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3007
        (tagType == 34027) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3008
            "/ pixelIntensityRange
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3009
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3010
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3011
        (tagType == 34028) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3012
            "/ transparencyIndicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3013
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3014
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3015
        (tagType == 34029) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3016
            "/ colorCharacterization
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3017
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3018
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3019
        (tagType == 34030) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3020
            "/ hcUsage
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3021
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3022
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3023
        (tagType == 34031) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3024
            "/ trapIndicator
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3025
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3026
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3027
        (tagType == 34032) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3028
            "/ cmykEquivalent
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3029
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3030
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3031
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3032
        "/ Private Pixel magic
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3033
        (tagType == 34232) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3034
            "/ 'jbig options' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3035
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3036
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3037
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3038
        (tagType == 34264) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3039
            "/ 'geotiff ModelTransformationTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3040
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3041
        ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3042
        "/ private Photoshop
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3043
        (tagType == 34377) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3044
            "/ RICHTIFFIPTC
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3045
            "/ IPTC (International Press Telecommunications Council) metadata.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3046
            "/ (see http://www.iptc.org/std/photometadata/specification/IPTC-PhotoMetadata)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3047
            decodeMetaTags == true ifTrue:[
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3048
                Verbose == true ifTrue:[ 
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3049
                    Logger info:'      RICHTIFFIPTC: %1' with:value
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3050
                ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3051
                self decodePhotoshopImageResourceBlock:value.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3052
            ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3053
                Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3054
                    Logger info:'      skipped decoding of IPTC-PhotoMetadata'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3055
                ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3056
            ].    
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3057
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3058
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3059
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3060
        (tagType == 34665) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3061
            "/ EXIFIFD
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3062
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3063
                Logger info:'      EXIFIFD: %1' with:value 
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
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3066
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3067
        (tagType == 34675) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3068
            "/ 'ICCPROFILE' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3069
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3070
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3071
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3072
        (tagType == 34732) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3073
            "/ 'ImageLayer' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3074
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3075
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3076
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3077
        (tagType == 34735) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3078
            "/ 'geotiff GeoKeyDirectoryTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3079
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3080
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3081
        (tagType == 34736) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3082
            "/ 'geotiff GeoDoubleParamsTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3083
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3084
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3085
        (tagType == 34737) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3086
            "/ 'geotiff GeoAsciiParamsTag' print. value printNewline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3087
            ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3088
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3089
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3090
        
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3091
        (tagType == 34859) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3092
            "/ '???' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3093
            "/ Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3094
            "/     Logger info:'      ?: %1' with:value 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3095
            "/ ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3096
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3097
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3098
        
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3099
        "/ More Private SGI
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3100
        (tagType == 34908) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3101
            "/ 'fax recv params' 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
        (tagType == 34909) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3105
            "/ 'fax subaddress' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3106
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3107
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3108
        (tagType == 34910) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3109
            "/ 'fax recv time' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3110
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3111
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3112
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3113
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3114
    (tagType between:36000 and:36999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3115
        (tagType == 36867) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3116
            "/ '???' print. value printNewline.
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
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3120
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3121
    (tagType between:37000 and:37999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3122
        (tagType == 37390) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3123
            "/ '???' print. value printNewline.
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 == 37391) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3127
            "/ '???' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3128
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3129
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3130
        (tagType == 37392) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3131
            "/ '???' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3132
            ^ self
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
        (tagType == 37398) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3135
            "/ '???' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3136
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3137
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3138
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3139
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3140
    (tagType between:42000 and:42999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3141
        (tagType == 42112) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3142
            "/ 'GDAL_METADATA' print. value printNewline.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3143
            Verbose == true ifTrue:[ 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3144
                Logger info:'      GDAL_METADATA: %1' with:value
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3145
            ].
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3146
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3147
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3148
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3149
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3150
    "/ 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
  3151
    (tagType between:50000 and:50999) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3152
        (tagType == 50706) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3153
            "/ DNGVersion
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3154
            Verbose == true ifTrue:[ 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3155
                Logger info:'      DNGVersion: %1' with:value
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3156
            ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3157
            isDNGImage := true.
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3158
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3159
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3160
        (tagType == 50707) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3161
            "/ DNGBackwardVersion
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3162
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3163
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3164
        (tagType == 50708) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3165
            "/ UniqueCameraModel
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3166
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3167
                Logger info:'      UniqueCameraModel: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3168
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3169
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3170
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3171
        (tagType == 50709) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3172
            "/ LocalizedCameraModel
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3173
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3174
                Logger info:'      LocalizedCameraModel: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3175
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3176
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3177
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3178
        (tagType == 50710) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3179
            "/ 'CFAPlaneColor' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3180
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3181
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3182
        (tagType == 50711) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3183
            "/ 'CFALayout' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3184
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3185
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3186
        (tagType == 50712) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3187
            "/ 'LinearizationTable' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3188
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3189
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3190
        (tagType == 50713) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3191
            "/ 'BlackLevelRepeatDim' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3192
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3193
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3194
        (tagType == 50714) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3195
            "/ 'BlackLevel' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3196
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3197
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3198
        (tagType == 50715) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3199
            "/ 'BlackLevelDeltaH' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3200
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3201
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3202
        (tagType == 50716) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3203
            "/ 'BlackLevelDeltaV' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3204
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3205
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3206
        (tagType == 50717) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3207
            "/ 'WhiteLevel' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3208
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3209
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3210
        (tagType == 50718) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3211
            "/ 'DefaultScale' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3212
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3213
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3214
        (tagType == 50719) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3215
            "/ 'DefaultCropOrigin' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3216
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3217
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3218
        (tagType == 50720) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3219
            "/ 'DefaultCropSize' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3220
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3221
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3222
        (tagType == 50721) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3223
            "/ 'ColorMatrix1' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3224
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3225
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3226
        (tagType == 50722) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3227
            "/ 'ColorMatrix2' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3228
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3229
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3230
        (tagType == 50723) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3231
            "/ 'CameraCalibrarion1' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3232
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3233
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3234
        (tagType == 50724) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3235
            "/ 'CameraCalibrarion2' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3236
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3237
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3238
        (tagType == 50725) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3239
            "/ 'ReductionMatrix1' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3240
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3241
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3242
        (tagType == 50726) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3243
            "/ 'ReductionMatrix2' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3244
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3245
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3246
        (tagType == 50727) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3247
            "/ 'AnalogBalance' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3248
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3249
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3250
        (tagType == 50728) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3251
            "/ 'AsShotNeutral' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3252
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3253
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3254
        (tagType == 50729) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3255
            "/ 'AsShotWhiteXY' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3256
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3257
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3258
        (tagType == 50730) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3259
            "/ 'BaselineExposure' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3260
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3261
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3262
        (tagType == 50731) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3263
            "/ 'BaselineNoise' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3264
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3265
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3266
        (tagType == 50732) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3267
            "/ 'BaselineSharpness' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3268
            ^ self
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
        (tagType == 50733) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3271
            "/ 'ByerGreenSplit' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3272
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3273
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3274
        (tagType == 50734) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3275
            "/ 'LinearResponseLimit' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3276
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3277
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3278
        (tagType == 50735) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3279
            "/ 'CameraSerialNumber' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3280
            Verbose == true ifTrue:[ 
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3281
                Logger info:'      CameraSerialNumber: %1' with:value
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3282
            ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3283
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3284
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3285
        (tagType == 50736) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3286
            "/ 'LensInfo' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3287
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3288
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3289
        (tagType == 50737) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3290
            "/ 'ChromaBlurRadius' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3291
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3292
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3293
        (tagType == 50738) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3294
            "/ 'AntiAliasStrength' print. value printNewline.
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
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3297
        (tagType == 50739) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3298
            "/ 'ShadowScale' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3299
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3300
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3301
        (tagType == 50740) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3302
            "/ 'DNGPrivateData' print. value printNewline.
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 == 50741) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3306
            "/ 'MakerNoteSafety' 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
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3309
        
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3310
        (tagType == 50778) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3311
            "/ 'CalibrationIlluminant1' 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
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3314
        (tagType == 50779) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3315
            "/ 'CalibrationIlluminant2' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3316
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3317
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3318
        (tagType == 50780) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3319
            "/ 'BestQualityScale' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3320
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3321
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3322
        (tagType == 50781) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3323
            "/ 'RawDataUniqueID' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3324
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3325
        ].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3326
        
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3327
        (tagType == 50827) ifTrue:[
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3328
            "/ 'OriginalRawFileName' print. value printNewline.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3329
            ^ self
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3330
        ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3331
    ].
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3332
    
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3333
"/
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3334
"/ 'TIFFReader: tag:' print. tagType print. ' typ:' print. numberType print.
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3335
"/ ' len:' print. length print. ' offs:' print. offset print. 
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3336
"/ ' val:' print. value print. ' valArr:' print. valueArray printNewline.  
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3337
"/
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3338
    'TIFFReader [warning]: unknown tag type ' errorPrint. tagType errorPrintCR
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3339
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3340
    "Modified (format): / 23-05-2017 / 16:12:58 / mawalch"
3985
3d9f0b1a06d0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
  3341
    "Modified: / 27-08-2017 / 20:46:36 / cg"
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3342
!
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3343
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3344
positionToStrip:stripNr
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3345
    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
  3346
!
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3347
3979
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3348
positionToTile:tileNr
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3349
    inStream position:((metaData at:#'TileOffsets') at:tileNr).
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
    "Created: / 25-08-2017 / 13:43:30 / cg"
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3352
!
5d915912216f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
  3353
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
  3354
readBytes:n signed:isSigned
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3355
    "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
  3356
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3357
    |oldPos offset bytes nInline|
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3358
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3359
    nInline := isBigTiff ifTrue:[8] ifFalse:[4].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3360
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3361
    n == 0 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3362
        "/ even in this case, one WORD is to be skipped.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3363
        inStream skip:nInline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3364
        ^ ''
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3365
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3366
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
  3367
    bytes := (isSigned ifTrue:[Array] ifFalse:[ByteArray]) new:n.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3368
    (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
  3369
        isSigned ifTrue:[
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3370
            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
  3371
        ] ifFalse:[
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3372
            inStream nextBytes:n into:bytes.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3373
        ].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3374
        (n < nInline) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3375
            inStream skip:(nInline - n).
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3376
        ]
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3377
    ] ifFalse:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3378
        offset := inStream nextInt32MSB:(byteOrder ~~ #lsb).
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3379
        oldPos := inStream position.
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3380
        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
  3381
        isSigned ifTrue:[
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3382
            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
  3383
        ] ifFalse:[
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3384
            inStream nextBytes:n into:bytes.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3385
        ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3386
        inStream position:oldPos
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3387
    ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3388
    ^ bytes
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3389
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3390
    "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
  3391
!
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3392
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3393
readChars:n
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3394
    "read n characters and return them in a string"
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3395
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3396
    |oldPos offset string nInline|
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3397
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3398
    nInline := isBigTiff ifTrue:[8] ifFalse:[4].
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3399
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3400
    n == 0 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3401
        "/ even in this case, one WORD is to be skipped.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3402
        inStream skip:nInline.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3403
        ^ ''
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3404
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3405
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3406
    string := String new:(n - 1).
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3407
    (n <= nInline) ifTrue:[
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3408
        inStream nextBytes:(n - 1) into:string.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3409
        inStream next. "/ skip the 0-byte.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3410
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3411
        (n < nInline) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3412
            inStream skip:(nInline - n).
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3413
        ]
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3414
    ] ifFalse:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3415
        offset := inStream nextInt32MSB:(byteOrder == #msb).
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3416
        oldPos := inStream position.
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3417
        inStream position:offset.
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3418
        inStream nextBytes:(n - 1) into:string.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3419
        inStream position:oldPos
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3420
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3421
    ^ string
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3422
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3423
    "Modified: / 27-08-2017 / 19:55:15 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3424
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3425
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3426
readDoubles:nFloats
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  3427
    "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
  3428
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3429
    |oldPos offset values val msb 
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3430
     n "{ Class: SmallInteger }" |
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3431
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3432
    n := nFloats.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3433
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3434
    msb := byteOrder ~~ #lsb.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3435
    values := DoubleArray basicNew:n.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3436
    (n == 1) ifTrue:[
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  3437
        val := Float readBinaryIEEEDoubleFrom:inStream MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3438
        values at:1 put:val.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3439
    ] ifFalse:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3440
        offset := inStream nextInt32MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3441
        oldPos := inStream position.
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3442
        inStream position:offset.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3443
        1 to:n do:[:index |
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  3444
            val := Float readBinaryIEEEDoubleFrom:inStream MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3445
            values at:index put:val
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3446
        ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3447
        inStream position:oldPos
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3448
    ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3449
    ^ values
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3450
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3451
    "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
  3452
!
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3453
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3454
readFloats:nFloats
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3455
    "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
  3456
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3457
    |oldPos offset values val val1 val2 msb 
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3458
     n "{ Class: SmallInteger }" |
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3459
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3460
    n := nFloats.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3461
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3462
    msb := byteOrder ~~ #lsb.
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3463
    values := FloatArray basicNew:n.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3464
    (isBigTiff and:[ n == 2 ]) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3465
        val1 := ShortFloat readBinaryIEEESingleFrom:inStream MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3466
        val2 := ShortFloat readBinaryIEEESingleFrom:inStream MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3467
        values at:1 put:val1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3468
        n == 2 ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3469
            values at:2 put:val2.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3470
        ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3471
    ] ifFalse:[    
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3472
        (n == 1) ifTrue:[
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  3473
            val := ShortFloat readBinaryIEEESingleFrom:inStream MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3474
            values at:1 put:val.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3475
        ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3476
            offset := inStream nextInt32MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3477
            oldPos := inStream position.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3478
            inStream position:offset.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3479
            1 to:n do:[:index |
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3480
                val := ShortFloat readBinaryIEEESingleFrom:inStream MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3481
                values at:index put:val
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3482
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3483
            inStream position:oldPos
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3484
        ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3485
    ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3486
    ^ values
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3487
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3488
    "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
  3489
!
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3490
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
  3491
readFracts:nFracts signed:isSigned
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3492
    "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
  3493
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3494
    |oldPos offset values numerator denominator msb
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3495
     n "{ Class: SmallInteger }" |
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3496
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3497
    n := nFracts.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3498
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3499
    msb := byteOrder ~~ #lsb.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3500
    values := Array basicNew:n.
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3501
    offset := inStream nextInt32MSB:msb.
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3502
    oldPos := inStream position.
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3503
    inStream position:offset.
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3504
    1 to:n do:[:index |
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3505
        numerator := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3506
        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
  3507
        values at:index put:(Fraction numerator:numerator denominator:denominator)
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3508
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3509
    inStream position:oldPos.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3510
    ^ values
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3511
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3512
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3513
readLong8s:nLongs signed:isSigned
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3514
    "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
  3515
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3516
    |oldPos offset values val msb 
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3517
     n "{ Class: SmallInteger }" |
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3518
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3519
    n := nLongs.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3520
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3521
    msb := byteOrder ~~ #lsb.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3522
    values := Array basicNew:n.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3523
    (n == 1) ifTrue:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3524
        val := isSigned ifTrue:[inStream nextInt64MSB:msb] ifFalse:[inStream nextUnsignedInt64MSB:msb].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3525
        values at:1 put:val.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3526
    ] ifFalse:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3527
        offset := inStream nextInt64MSB:msb.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3528
        oldPos := inStream position.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3529
        inStream position:offset.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3530
        1 to:n do:[:index |
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3531
            val := isSigned ifTrue:[inStream nextInt64MSB:msb] ifFalse:[inStream nextUnsignedInt64MSB:msb].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3532
            values at:index put:val
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3533
        ].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3534
        inStream position:oldPos
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3535
    ].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3536
    ^ values
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3537
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3538
    "Created: / 24-08-2017 / 22:01:26 / cg"
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3539
!
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  3540
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
  3541
readLongs:nLongs signed:isSigned
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3542
    "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
  3543
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3544
    |oldPos offset values val val1 val2 msb 
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3545
     n "{ Class: SmallInteger }" |
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3546
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3547
    n := nLongs.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3548
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3549
    msb := byteOrder ~~ #lsb.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3550
    values := Array basicNew:n.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3551
    (isBigTiff and:[ n <= 2 ]) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3552
        val1 := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3553
        val2 := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3554
        values at:1 put:val1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3555
        n == 2 ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3556
            values at:2 put:val2.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3557
        ].
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3558
    ] ifFalse:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3559
        (n == 1) ifTrue:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3560
            val := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3561
            values at:1 put:val.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3562
        ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3563
            offset := inStream nextInt32MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3564
            oldPos := inStream position.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3565
            inStream position:offset.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3566
            1 to:n do:[:index |
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3567
                val := isSigned ifTrue:[inStream nextInt32MSB:msb] ifFalse:[inStream nextUnsignedInt32MSB:msb].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3568
                values at:index put:val
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3569
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3570
            inStream position:oldPos
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3571
        ].
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3572
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3573
    ^ values
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3574
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3575
    "Modified: / 24-08-2017 / 23:35:38 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3576
!
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3577
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
  3578
readShorts:nShorts signed:isSigned
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3579
    "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
  3580
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3581
    |oldPos offset values msb val1 val2 val3 val4
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3582
     n "{ Class: SmallInteger }" |
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3583
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3584
    n := nShorts.
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3585
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3586
    msb := (byteOrder ~~ #lsb).
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3587
    values := Array basicNew:n.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3588
    (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
  3589
        isSigned ifTrue:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3590
            val1 := inStream nextInt16MSB:msb.
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3591
            val2 := inStream nextInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3592
            val3 := inStream nextInt16MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3593
            val4 := inStream nextInt16MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3594
        ] ifFalse:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3595
            val1 := inStream nextUnsignedInt16MSB:msb.
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3596
            val2 := inStream nextUnsignedInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3597
            val3 := inStream nextUnsignedInt16MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3598
            val4 := inStream nextUnsignedInt16MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3599
        ].
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3600
        values at:1 put:val1.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3601
        (n >= 2) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3602
            values at:2 put:val2.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3603
            (n >= 3) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3604
                values at:3 put:val3.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3605
                (n == 4) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3606
                    values at:4 put:val4.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3607
                ]
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3608
            ]
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3609
        ]
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3610
    ] ifFalse:[
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3611
        (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
  3612
            isSigned ifTrue:[
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  3613
                val1 := inStream nextInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3614
                val2 := inStream nextInt16MSB:msb.
1829
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
                val1 := inStream nextUnsignedInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3617
                val2 := inStream nextUnsignedInt16MSB:msb.
1829
af94d3366af3 tiff6 tag values added (signed byte,....)
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3618
            ].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3619
            values at:1 put:val1.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3620
            (n == 2) ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3621
                values at:2 put:val2
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3622
            ]
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3623
        ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3624
            offset := inStream nextInt32MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3625
            oldPos := inStream position.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3626
            inStream position:offset.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3627
            1 to:n do:[:index |
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3628
                isSigned ifTrue:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3629
                    val1 := inStream nextInt16MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3630
                ] ifFalse:[
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3631
                    val1 := inStream nextUnsignedInt16MSB:msb.
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3632
                ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3633
                values at:index put:val1
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3634
            ].
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3635
            inStream position:oldPos
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  3636
        ].
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3637
    ].
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3638
    ^ values
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3639
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  3640
    "Modified: / 24-08-2017 / 23:33:09 / cg"
3984
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
readSingleTagFrom:aStream
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3644
    |msb tagType numberType length|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3645
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3646
    msb := (byteOrder == #msb).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3647
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3648
    tagType := aStream nextUnsignedInt16MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3649
    numberType := aStream nextUnsignedInt16MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3650
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3651
    isBigTiff ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3652
        length := aStream nextInt32MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3653
    ] ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3654
        length := aStream nextInt64MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3655
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3656
    self decodeTiffTag:tagType numberType:numberType length:length.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3657
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3658
    "Created: / 26-08-2017 / 11:04:50 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3659
    "Modified (format): / 26-08-2017 / 22:37:58 / cg"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3660
!
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3661
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3662
readTagsFrom:aStream
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3663
    |numberOfTags msb|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3664
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3665
    msb := (byteOrder == #msb).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3666
    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3667
    isBigTiff ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3668
        numberOfTags := aStream nextUnsignedInt16MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3669
    ] ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3670
        numberOfTags := aStream nextUnsignedInt64MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3671
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3672
    1 to:numberOfTags do:[:index |
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3673
        self readSingleTagFrom:aStream.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3674
    ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3675
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3676
    "Created: / 26-08-2017 / 11:03:45 / cg"
516
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3677
! !
76ffe180cff8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 461
diff changeset
  3678
1762
55cf76514c8c method category rename
Claus Gittinger <cg@exept.de>
parents: 1759
diff changeset
  3679
!TIFFReader methodsFor:'private-writing'!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3680
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3681
writeBitsPerSample
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
  3682
"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3683
'bitsPerSample: ' print. bitsPerSample printNewline.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3684
'store bitspersample at: ' print. outStream position printNewline.
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
  3685
"
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3686
    bitsPerSamplePos := outStream position.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3687
    bitsPerSample do:[:n |
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  3688
        self writeShort:n
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3689
    ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3690
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3691
3f9277473954 Initial revision
claus
parents:
diff changeset
  3692
writeColorMap
28
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
  3693
    |n|
8daff0234d2e *** empty log message ***
claus
parents: 25
diff changeset
  3694
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3695
    colorMapPos := outStream position.
35
f13cdd0b44c7 *** empty log message ***
claus
parents: 32
diff changeset
  3696
    #(red green blue) do:[:component |
440
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3697
        n := 0.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3698
        colorMap do:[:clr |
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3699
            |entry|
35
f13cdd0b44c7 *** empty log message ***
claus
parents: 32
diff changeset
  3700
440
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3701
            clr isNil ifTrue:[
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3702
                entry := 0
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3703
            ] ifFalse:[
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3704
                entry := clr perform:component.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3705
                "
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3706
                 tiff map is 16 bit - scale from percent to 0..16rFFFF
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3707
                "
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3708
                entry := (entry * 16rFFFF / 100) rounded.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3709
            ].
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3710
            self writeShort:entry.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3711
            n := n + 1
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3712
        ].
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3713
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3714
        "
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3715
         fill to 256 entries
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3716
        "
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3717
        [n < 256] whileTrue:[
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3718
            self writeShort:0.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3719
            n := n + 1.
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3720
        ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3721
    ]
440
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3722
fa1e1a56ea43 category rename
Claus Gittinger <cg@exept.de>
parents: 398
diff changeset
  3723
    "Modified: 20.2.1997 / 18:06:10 / cg"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3724
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3725
3f9277473954 Initial revision
claus
parents:
diff changeset
  3726
writeStripByteCounts
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
  3727
"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3728
'stripByteCounts: ' print. stripByteCounts printNewline.
3f9277473954 Initial revision
claus
parents:
diff changeset
  3729
'store stripbytecounts at: ' print. outStream position printNewline.
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
  3730
"
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3731
    stripByteCountsPos := outStream position.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3732
    stripByteCounts do:[:c |
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  3733
        self writeShort:c
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3734
    ]
3f9277473954 Initial revision
claus
parents:
diff changeset
  3735
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3736
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3737
writeStripOffsets
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
  3738
"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3739
'stripOffsets: ' print. stripOffsets printNewline.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3740
'store stripoffsets at: ' print. outStream position printNewline.
3
78aaa5408119 *** empty log message ***
claus
parents: 0
diff changeset
  3741
"
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  3742
    stripOffsetsPos := outStream position.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  3743
    stripOffsets do:[:o |
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  3744
        self writeLong:o
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3745
    ]
3f9277473954 Initial revision
claus
parents:
diff changeset
  3746
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3747
3f9277473954 Initial revision
claus
parents:
diff changeset
  3748
writeTag:tagType
3f9277473954 Initial revision
claus
parents:
diff changeset
  3749
    self writeTiffTag:tagType.
3f9277473954 Initial revision
claus
parents:
diff changeset
  3750
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  3751
3f9277473954 Initial revision
claus
parents:
diff changeset
  3752
writeTiffTag:tagType
3f9277473954 Initial revision
claus
parents:
diff changeset
  3753
    |value valueArray numberType count address|
3f9277473954 Initial revision
claus
parents:
diff changeset
  3754
3f9277473954 Initial revision
claus
parents:
diff changeset
  3755
    count := 1.
3f9277473954 Initial revision
claus
parents:
diff changeset
  3756
    address := nil.
3f9277473954 Initial revision
claus
parents:
diff changeset
  3757
    (tagType == 253) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3758
        "tiff class"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3759
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3760
    (tagType == 254) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  3761
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3762
    (tagType == 255) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3763
        "SubfileType"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3764
        value := subFileType.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3765
        numberType := #long.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3766
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3767
    (tagType == 256) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3768
        "ImageWidth"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3769
        value := width.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3770
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3771
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3772
    (tagType == 257) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3773
        "ImageHeight"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3774
        value := height.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3775
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3776
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3777
    (tagType == 258) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3778
        "bitspersample"
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  3779
        address := bitsPerSamplePos.
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3780
        numberType := #short.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3781
        count := bitsPerSample size.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3782
        valueArray := bitsPerSample
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3783
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3784
    (tagType == 259) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3785
        "compression"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3786
        value := compression.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3787
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3788
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3789
    (tagType == 262) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3790
        "photometric"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3791
        (photometric == #whiteIs0) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3792
            value := 0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3793
        ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3794
            (photometric == #blackIs0) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3795
                value := 1
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3796
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3797
                (photometric == #rgb) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3798
                    value := 2
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3799
                ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3800
                    (photometric == #palette) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3801
                        value := 3
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3802
                    ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3803
                        (photometric == #transparency) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3804
                            value := 4
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3805
                        ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3806
                            self error:'bad photometric' mayProceed:true.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3807
                        ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3808
                    ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3809
                ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3810
            ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3811
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3812
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3813
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3814
    (tagType == 263) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  3815
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3816
    (tagType == 264) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  3817
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3818
    (tagType == 265) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  3819
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3820
    (tagType == 266) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3821
        "fillOrder"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3822
        (fillOrder == #msb) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3823
            value := 1
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3824
        ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3825
            (fillOrder == #lsb) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3826
                value := 2
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3827
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3828
                self error:'bad fillOrder' mayProceed:true
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3829
            ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3830
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3831
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3832
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3833
    (tagType == 269) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  3834
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3835
    (tagType == 270) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  3836
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3837
    (tagType == 271) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  3838
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3839
    (tagType == 272) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  3840
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3841
    (tagType == 273) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3842
        "stripoffsets"
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  3843
        address := stripOffsetsPos.
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3844
        numberType := #long.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3845
        count := stripOffsets size.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3846
        valueArray := stripOffsets
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3847
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3848
    (tagType == 274) ifTrue:[
3f9277473954 Initial revision
claus
parents:
diff changeset
  3849
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3850
    (tagType == 277) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3851
        "samplesPerPixel"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3852
        value := samplesPerPixel.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3853
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3854
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3855
    (tagType == 278) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3856
        "rowsperstrip"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3857
        value := rowsPerStrip.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3858
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3859
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3860
    (tagType == 279) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3861
        "stripbytecount"
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  3862
        address := stripByteCountsPos.
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3863
        numberType := #short.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3864
        count := stripByteCounts size.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3865
        valueArray := stripByteCounts
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3866
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3867
    (tagType == 280) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3868
        "min sample value"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3869
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3870
    (tagType == 281) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3871
        "max sample value"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3872
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3873
    (tagType == 282) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3874
        "x resolution"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3875
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3876
    (tagType == 283) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3877
        "y resolution"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3878
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3879
    (tagType == 284) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3880
        "planarconfig"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3881
        value := planarConfiguration.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3882
        numberType := #short.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3883
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3884
    (tagType == 285) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3885
        "pageName"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3886
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3887
    (tagType == 286) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3888
        "xPosition"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3889
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3890
    (tagType == 287) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3891
        "yPosition"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3892
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3893
    (tagType == 288) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3894
        "freeOffsets"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3895
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3896
    (tagType == 289) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3897
        "freeByteCounts"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3898
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3899
    (tagType == 290) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3900
        "grayResponceUnit"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3901
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3902
    (tagType == 291) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3903
        "grayResponceCurve"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3904
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3905
    (tagType == 292) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3906
        "group3options"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3907
        value := group3options.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3908
        numberType := #long.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3909
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3910
    (tagType == 293) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3911
        "group4options"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3912
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3913
    (tagType == 296) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3914
        "resolutionunit"
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3915
        ^ self
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3916
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3917
    (tagType == 297) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3918
        "pageNumber"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3919
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3920
    (tagType == 300) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3921
        "colorResponceUnit"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3922
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3923
    (tagType == 301) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3924
        "colorResponceCurve"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3925
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3926
    (tagType == 306) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3927
        "dateTime"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3928
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3929
    (tagType == 315) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3930
        "artist"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3931
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3932
    (tagType == 317) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3933
        "predictor"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3934
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3935
    (tagType == 320) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3936
        "colormap"
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  3937
        address := colorMapPos.
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3938
        numberType := #short.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3939
        count := 256 "(colorMap at:1) size" * 3.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3940
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3941
3f9277473954 Initial revision
claus
parents:
diff changeset
  3942
    (value isNil and:[address isNil]) ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3943
        self error:'unhandled tag' mayProceed:true.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3944
        ^ self
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3945
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3946
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
  3947
"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3948
'tag:' print. tagType print. ' typ:' print. numberType print.
3f9277473954 Initial revision
claus
parents:
diff changeset
  3949
' len:' print. count print.
3f9277473954 Initial revision
claus
parents:
diff changeset
  3950
' val:' print. value printNewline.  
14
20638e830834 *** empty log message ***
claus
parents: 11
diff changeset
  3951
"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3952
3f9277473954 Initial revision
claus
parents:
diff changeset
  3953
    self writeShort:tagType.
3f9277473954 Initial revision
claus
parents:
diff changeset
  3954
    numberType == #short ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3955
        self writeShort:3.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3956
        self writeLong:count.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3957
    ] ifFalse:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3958
        numberType == #long ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3959
            self writeShort:4.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3960
            self writeLong:count.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3961
        ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3962
            numberType == #byte ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3963
                self writeShort:1.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3964
                self writeLong:count.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3965
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3966
                self error:'bad numbertype'
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3967
            ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3968
        ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  3969
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  3970
    address notNil ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3971
        (numberType == #long and:[count == 1]) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3972
            self writeLong:(valueArray at:1).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3973
            ^ self
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3974
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3975
        (numberType == #short and:[count <= 2]) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3976
            self writeShort:(valueArray at:1).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3977
            count == 2 ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3978
                self writeShort:(valueArray at:2).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3979
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3980
                self writeShort:0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3981
            ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3982
            ^ self
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3983
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3984
        (numberType == #byte and:[count <= 4]) ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3985
            outStream nextPut:(valueArray at:1).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3986
            count > 1 ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3987
                outStream nextPut:(valueArray at:2).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3988
                count > 2 ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3989
                    outStream nextPut:(valueArray at:3).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3990
                    count > 3 ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3991
                        outStream nextPut:(valueArray at:4).
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3992
                    ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3993
                        outStream nextPut:0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3994
                    ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3995
                ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3996
                    outStream nextPut:0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3997
                ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3998
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  3999
                outStream nextPut:0
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4000
            ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4001
            ^ self
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4002
        ].
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4003
        self writeLong:address.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4004
        ^ self
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4005
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4006
    numberType == #short ifTrue:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4007
        self writeShort:value.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4008
        self writeShort:0
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4009
    ] ifFalse:[
1215
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4010
        numberType == #long ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4011
            self writeLong:value
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4012
        ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4013
            numberType == #byte ifTrue:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4014
                outStream nextPut:value.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4015
                outStream nextPut:0.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4016
                outStream nextPut:0.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4017
                outStream nextPut:0.
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4018
            ] ifFalse:[
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4019
                self error:'bad numbertype'
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4020
            ]
e40392a58092 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
  4021
        ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4022
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4023
!
3f9277473954 Initial revision
claus
parents:
diff changeset
  4024
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4025
writeUncompressedBits
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4026
    "write bits as one or multiple strips"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4027
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4028
    |offs bytesPerRow nBytes
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4029
     h "{ Class: SmallInteger }"|
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4030
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4031
    nBytes := data size.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4032
    nBytes < 16rFFFF ifTrue:[
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  4033
        stripOffsets := Array with:(outStream position).
1703
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4034
        stripByteCounts := Array with:nBytes.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4035
        outStream nextPutBytes:nBytes from:data.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4036
        rowsPerStrip := height
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4037
    ] ifFalse:[
1703
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4038
        stripOffsets := Array basicNew:height.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4039
        bytesPerRow := nBytes // height.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4040
        stripByteCounts := (Array basicNew:height) atAllPut:bytesPerRow.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4041
1703
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4042
        offs := 1.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4043
        h := height.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4044
        1 to:h do:[:row |
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  4045
            stripOffsets at:row put:(outStream position).
1703
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4046
            outStream nextPutBytes:bytesPerRow from:data startingAt:offs.
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4047
            offs := offs + bytesPerRow
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4048
        ].
5a08db3f0013 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 1702
diff changeset
  4049
        rowsPerStrip := 1
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4050
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4051
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4052
    'stripOffsets: ' print. stripOffsets printNewline.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4053
    'stripByteCounts: ' print. stripByteCounts printNewline.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4054
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4055
! !
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4056
1805
93f557cbe600 category changes
Claus Gittinger <cg@exept.de>
parents: 1785
diff changeset
  4057
!TIFFReader methodsFor:'reading'!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4058
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4059
fromStream:aStream
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4060
    "read a stream containing a TIFF image.
3899
fd43372bf11d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3777
diff changeset
  4061
     Leave image description in instance variables.
fd43372bf11d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3777
diff changeset
  4062
     (i.e. to get the image, ask with image)."
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4063
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4064
    |char1 char2 version offset msb
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4065
     bytesPerRow img moreIfds|
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4066
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4067
    inStream := aStream.
331
304f9c439efa allow reading from ByteArray-readStreams
Claus Gittinger <cg@exept.de>
parents: 329
diff changeset
  4068
    aStream binary.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4069
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4070
    char1 := aStream next.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4071
    char2 := aStream next.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4072
    
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4073
    "/ first two chars are either II (intel byte order) 
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4074
    "/ or MM (motorola byte orrder)
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4075
    (char1 ~~ char2) ifTrue:[
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  4076
        ^ self fileFormatError:'not a tiff file'.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4077
    ].
1953
90f3c42ef3c1 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1846
diff changeset
  4078
    (char1 == $I codePoint) ifTrue:[
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4079
        byteOrder := #lsb.
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4080
        msb := false.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4081
    ] ifFalse:[
1953
90f3c42ef3c1 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1846
diff changeset
  4082
        (char1 == $M codePoint) ifTrue:[
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4083
            byteOrder := #msb.
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4084
            msb := true.
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4085
        ] ifFalse:[
814
6240dfc2fd3b use common fileFormatError reporter
Claus Gittinger <cg@exept.de>
parents: 744
diff changeset
  4086
            ^ self fileFormatError:'not a tiff file'.
192
947cc10f86dc commentary
Claus Gittinger <cg@exept.de>
parents: 159
diff changeset
  4087
        ]
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4088
    ].
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4089
    
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4090
    version := aStream nextUnsignedInt16MSB:msb.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4091
    (version == 42) ifTrue:[
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4092
        isBigTiff := false.
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4093
    ] ifFalse:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4094
       (version == 43) ifTrue:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4095
            |byteSizeOfOffsets always0|
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4096
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4097
            "/ 43 is the proposed bigtiff format
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4098
            isBigTiff := true.
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4099
            byteSizeOfOffsets := aStream nextUnsignedInt16MSB:msb.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4100
            byteSizeOfOffsets == 8 ifFalse:[
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4101
                ^ self fileFormatError:'version of bigtiff-file not supported'.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4102
            ].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4103
            always0 := aStream nextUnsignedInt16MSB:msb.
3975
1315fd14851b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3974
diff changeset
  4104
            always0 == 0 ifFalse:[
3974
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4105
                ^ self fileFormatError:'version of bigtiff-file not supported'.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4106
            ].
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4107
        ] ifFalse:[    
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4108
            ^ self fileFormatError:'version of tiff-file not supported'.
b4f7c8442dd8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4109
        ].
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4110
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4111
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4112
    imageSequence := ImageSequence new.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4113
    isDNGImage := false.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4114
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4115
    isBigTiff ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4116
        offset := aStream nextUnsignedInt32MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4117
    ] ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4118
        offset := aStream nextUnsignedInt64MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4119
    ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4120
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4121
    [ offset ~~ 0 ] whileTrue:[    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4122
        Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4123
            Logger info:'------------------ reading image #%1 ------------------' with:imageSequence size+1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4124
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4125
        
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4126
        aStream position:offset.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4127
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4128
        "setup default values"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4129
        metaData := TIFFMetaData new.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4130
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4131
        compression := 1. "none"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4132
        fillOrder := #msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4133
        planarConfiguration := PLANARCONFIG_CONTIG.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4134
        photometric := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4135
        bitsPerSample := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4136
        samplesPerPixel := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4137
        width := height := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4138
        stripOffsets := stripByteCounts := rowsPerStrip := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4139
        "resolutionUnit := 2."
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4140
        predictor := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4141
        group3options := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4142
        orientation := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4143
        subFileType := subIfds := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4144
        sampleFormat := minSampleValue := maxSampleValue := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4145
        tileWidth := tileLength := tileOffsets := tileByteCounts := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4146
        
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4147
        self readTagsFrom:aStream.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4148
        "/ read the next offset now,
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4149
        "/ because the stream's position will be changed when the image-data is read
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4150
        isBigTiff ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4151
            offset := aStream nextUnsignedInt32MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4152
        ] ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4153
            offset := aStream nextUnsignedInt64MSB:msb.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4154
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4155
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4156
        "check for required tags"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4157
        width isNil ifTrue:[ ^ self fileFormatError:'missing width tag' ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4158
        height isNil ifTrue:[ ^ self fileFormatError:'missing length tag' ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4159
        photometric isNil ifTrue:[ ^ self fileFormatError:'missing photometric tag' ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4160
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4161
        "given all the information, read the bits"
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4162
        tileWidth notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4163
            tileOffsets := tileOffsets ? stripOffsets.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4164
            tileByteCounts := tileByteCounts ? stripByteCounts.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4165
            (tileOffsets notNil 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4166
                and:[tileLength notNil
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4167
                and:[tileByteCounts notNil ]]
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4168
            ) ifFalse:[    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4169
                ^ self fileFormatError:'missing stripOffsets (or tileOffsets)'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4170
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4171
            self reportDimension.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4172
            self readTiledTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4173
        ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4174
            stripByteCounts isNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4175
                stripOffsets size == 1 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4176
                    stripByteCounts := Array with:(self bitsPerPixel // 8) * width * height
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4177
                ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4178
                    ^ self fileFormatError:'missing stripByteCounts'.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4179
                ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4180
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4181
            rowsPerStrip isNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4182
                rowsPerStrip := height
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4183
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4184
            self reportDimension.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4185
            self readTiffImageData.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4186
        ].
3693
0b4a3090f2a8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  4187
    
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4188
        orientation == #unsupported ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4189
            'TIFFReader [warning]: unsupported orientation' errorPrintCR
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4190
        ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4191
            orientation == #vFlip ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4192
                |tmp offset1 offset2|
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4193
                
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4194
                "/ reverse rows to top-to bottom 
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4195
                "/ (oops - depends on side-effecting the data array)
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4196
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4197
                bytesPerRow := self bytesPerRow.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4198
                tmp := ByteArray new:bytesPerRow.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4199
                offset1 := 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4200
                offset2 := (height-1)*bytesPerRow + 1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4201
                0 to:((height-1)//2) do:[:row |
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4202
                    tmp replaceFrom:1 to:bytesPerRow with:data startingAt:offset1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4203
                    data replaceFrom:offset1 to:(offset1+bytesPerRow-1) with:data startingAt:offset2.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4204
                    data replaceFrom:offset2 to:(offset2+bytesPerRow-1) with:tmp startingAt:1.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4205
                    offset1 := offset1 + bytesPerRow.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4206
                    offset2 := offset2 - bytesPerRow.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4207
                ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4208
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4209
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4210
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4211
        "/ fixup photoetric
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4212
        photometric == #rgb ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4213
            samplesPerPixel == 4 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4214
                photometric := #rgba
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4215
            ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4216
        ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4217
        
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4218
        img := self makeImage.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4219
        img imageSequence:imageSequence.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4220
        imageSequence add:(ImageFrame new image:img).
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4221
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4222
        offset == 0 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4223
            moreIfds isNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4224
                subIfds notNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4225
                    (isDNGImage not or:[loadFullResolutionImage == true]) ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4226
                        moreIfds := OrderedCollection withAll:subIfds.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4227
                        subIfds := nil.
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4228
                    ] ifFalse:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4229
                        Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4230
                            Logger info:'skip high resolution images (use loadFullResolutionImage is false)'
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4231
                        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4232
                    ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4233
                ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4234
            ].
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4235
            moreIfds notEmptyOrNil ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4236
                offset := moreIfds removeFirst
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4237
            ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4238
        ].    
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4239
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4240
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4241
    imageSequence size > 1 ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4242
        Verbose == true ifTrue:[
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4243
            Logger info:'read %1 images' with:imageSequence size
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4244
        ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4245
    ].    
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4246
    ^ self
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4247
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4248
    "Modified: / 27-08-2017 / 18:45:40 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4249
! !
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4250
1805
93f557cbe600 category changes
Claus Gittinger <cg@exept.de>
parents: 1785
diff changeset
  4251
!TIFFReader methodsFor:'writing'!
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4252
1571
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4253
save:image onStream:aStream
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4254
    "save image as (uncompressed) TIFF file on aFileName"
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4255
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4256
    |pos1 pos indicator|
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4257
1078
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4258
    image mask notNil ifTrue:[
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4259
        Image informationLostQuerySignal
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4260
            raiseWith:image
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4261
            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
  4262
    ].
fc33e172bbbc raise informationLostSignal before attemting to write the file
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  4263
1571
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4264
    outStream := aStream.
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4265
    outStream binary.
461
bacef118f54a more signals to be raised if anything happens during
Claus Gittinger <cg@exept.de>
parents: 440
diff changeset
  4266
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4267
    "save as msb"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4268
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4269
    byteOrder := #msb.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4270
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4271
    byteOrder := #lsb.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4272
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4273
    fillOrder := #msb.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4274
    width := image width.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4275
    height := image height.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4276
    photometric := image photometric.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4277
    samplesPerPixel := image samplesPerPixel.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4278
    bitsPerSample := image bitsPerSample.
1785
16917d309b46 oops - position incompatibility fixed
Claus Gittinger <cg@exept.de>
parents: 1762
diff changeset
  4279
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4280
    colorMap := image colorMap.
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4281
    planarConfiguration := PLANARCONFIG_CONTIG.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4282
    compression := 1.   "none"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4283
    data := image bits.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4284
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4285
    currentOffset := 0.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4286
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4287
    (byteOrder == #msb) ifTrue:[
1953
90f3c42ef3c1 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1846
diff changeset
  4288
        indicator := $M codePoint.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4289
    ] ifFalse:[
1953
90f3c42ef3c1 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1846
diff changeset
  4290
        indicator := $I codePoint.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4291
    ].
1571
cffaf89a0c6e New: #save:onStream
Stefan Vogel <sv@exept.de>
parents: 1230
diff changeset
  4292
    outStream nextPut:indicator; nextPut:indicator.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4293
    currentOffset := currentOffset + 2.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4294
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4295
    self writeShort:42.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4296
    currentOffset := currentOffset + 2.
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4297
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4298
    pos1 := outStream position.
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4299
    self writeLong:0.           "start of tags - filled in later"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4300
    currentOffset := currentOffset + 4.
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
    "output strips"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4303
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4304
    self writeUncompressedBits. "this outputs bits as strips, sets stripOffsets and stripByteCounts"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4305
    self writeStripOffsets.     "this outputs strip offsets, sets stripOffsetsPos"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4306
    self writeStripByteCounts.  "this outputs strip bytecounts, sets stripByteCountPos"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4307
    self writeBitsPerSample.    "this outputs bitsPerSample, sets bitsPerSamplePos"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4308
    photometric == #palette ifTrue:[
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4309
        self writeColorMap      "this outputs colorMap, sets colorMapPos"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4310
    ].
3f9277473954 Initial revision
claus
parents:
diff changeset
  4311
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  4312
    pos := outStream position.        "backpatch tag offset"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4313
    outStream position:pos1.
1704
1526c7b84920 code rewritten to be independent of stream zero-base
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  4314
    self writeLong:pos.                     "fill in tag offset"
3211
6d43ccc9adc4 class: TIFFReader
Stefan Vogel <sv@exept.de>
parents: 3112
diff changeset
  4315
    outStream position:pos.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4316
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4317
('patch tag offset at: ', (pos1 printStringRadix:16) , ' to ',
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4318
                         (pos printStringRadix:16)) printNewline.
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4319
"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4320
    "output tag data"
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4321
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4322
    photometric == #palette ifTrue:[
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4323
        self writeShort:11.  "11 tags"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4324
    ] ifFalse:[
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4325
        self writeShort:10.  "10 tags"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4326
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4327
    self writeTag:256.               "image width"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4328
    self writeTag:257.               "image height"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4329
    self writeTag:258.               "bits per sample"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4330
    self writeTag:259.               "compression"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4331
    self writeTag:262.               "photometric"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4332
    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
  4333
    self writeTag:277.               "samplesPerPixel"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4334
    self writeTag:278.               "rowsPerStrip"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4335
    self writeTag:279.               "strip byte counts"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4336
    self writeTag:284.               "planarconfig"
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4337
    photometric == #palette ifTrue:[
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4338
        self writeTag:320            "colorMap"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4339
    ].
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4340
    self writeLong:0.                "end of tags mark"
3984
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4341
e533a09c2c1d #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4342
    "Modified: / 27-08-2017 / 13:36:35 / cg"
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4343
! !
30
9638bc775850 *** empty log message ***
claus
parents: 28
diff changeset
  4344
357
4bcb93f5892e newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
  4345
!TIFFReader class methodsFor:'documentation'!
30
9638bc775850 *** empty log message ***
claus
parents: 28
diff changeset
  4346
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4347
version
3552
ef88cdf452d1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3382
diff changeset
  4348
    ^ '$Header$'
3976
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  4349
!
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  4350
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  4351
version_CVS
5eda7dd4846b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3975
diff changeset
  4352
    ^ '$Header$'
0
3f9277473954 Initial revision
claus
parents:
diff changeset
  4353
! !
1702
75a595a70c86 stream position is going to be 0-based soon
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
  4354
3112
d6fbee4954ca class: TIFFReader
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  4355
135
ff507d9a242b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 117
diff changeset
  4356
TIFFReader initialize!