BlitImageReader.st
author Claus Gittinger <cg@exept.de>
Thu, 16 Dec 2004 12:45:15 +0100
changeset 2029 136dd7e8228a
parent 1846 d29322944b05
child 3855 1db7742d33ad
child 3922 a82b5a12bf52
permissions -rw-r--r--
pass change information from update
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
118
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
     1
"
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
     2
 COPYRIGHT (c) 1995 by Claus Gittinger
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
     3
	      All Rights Reserved
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
     4
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
     5
 This software is furnished under a license and may be used
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
     6
 only in accordance with the terms of that license and with the
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
     8
 be provided or otherwise made available to, or used by, any
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
     9
 other person.  No title to or ownership of the software is
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    10
 hereby transferred.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    11
"
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    12
1740
b692ce36d2e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
    13
"{ Package: 'stx:libview2' }"
b692ce36d2e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
    14
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
ImageReader subclass:#BlitImageReader
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    16
	instanceVariableNames:''
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    17
	classVariableNames:''
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    18
	poolDictionaries:''
1745
4fa0fad2a463 code cleanup (colorMap handling)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
    19
	category:'Graphics-Images-Readers'
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!BlitImageReader class methodsFor:'documentation'!
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
118
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    24
copyright 
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    25
"
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    26
 COPYRIGHT (c) 1995 by Claus Gittinger
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    27
	      All Rights Reserved
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
118
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    29
 This software is furnished under a license and may be used
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    30
 only in accordance with the terms of that license and with the
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    32
 be provided or otherwise made available to, or used by, any
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    33
 other person.  No title to or ownership of the software is
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    34
 hereby transferred.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    35
"
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    36
!
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    37
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    38
documentation
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    39
"
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    40
    A q&d hack to read 48x48x1 Blit images (faces)
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    41
    A variation of this format is also used to pass face-icons in mail headers
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    42
    (X-face: header line).
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    43
    To support those, images can also be read from a string which is
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    44
    encoded in that format (see: #fromCompressedString:).
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    45
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    46
    [See also:]
234
b6352d13e792 xrefs in documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
    47
        Image Form Icon
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    48
        GIFReader FaceReader JPEGReader PBMReader PCXReader 
210
5405de794686 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 209
diff changeset
    49
        ST80FormReader SunRasterReader TargaReader TIFFReader WindowsIconReader 
209
840ddcf12904 commentary
Claus Gittinger <cg@exept.de>
parents: 206
diff changeset
    50
        XBMReader XPMReader XWDReader 
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    51
"
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    52
!
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    53
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    54
examples
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    55
"
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    56
    Image fromFile:'.../.../48x48x1'
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    57
"
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
! !
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
!BlitImageReader class methodsFor:'initialization'!
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
initialize
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    63
    "install myself in the Image classes fileFormat table
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    64
     for files named `48x48x1' (funny)."
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    65
1740
b692ce36d2e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
    66
    MIMETypes defineImageType:nil "'image/x-blitImage'" suffix:'48x48x1' reader:self
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
    "
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
     BlitImageReader initialize
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
    "
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
398
aef700d15416 new suffix-table
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
    72
    "Modified: 1.2.1997 / 15:01:08 / cg"
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
! !
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
113
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
    75
!BlitImageReader class methodsFor:'special formats'!
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
    76
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    77
fromCompressedString:aString
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    78
    "given a compressed image string (such as present in mail headers),
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    79
     return a Depth1Image for it.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    80
     Since I am not willing to port/include the uncompface stuff into ST/X,
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    81
     open a pipe to the uncompressor.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    82
     If you dont have compface/uncompface, get it from your nearest ftp server."
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    83
1740
b692ce36d2e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
    84
    |s|
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    85
1740
b692ce36d2e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
    86
    s := self uncompressString:aString.
b692ce36d2e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
    87
    ^ self fromStream:(s readStream).
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    88
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    89
    "   
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    90
     |s|
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    91
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    92
     s := '
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    93
Iqsa(US9p?)Y^W
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    94
+6Ff[Z]<t?\A!!eaL''DG{20*#{C1;''Ct&}L}B^/1(aYI@hP)4!!<}7D=2gm
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    95
8!!$T`8QNfK<te\20%A\`wm*wa2' , Character doubleQuote asString , '^Up*Qs' , Character doubleQuote asString ,
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    96
'X}KeV*3XeB2te&sKp*t`N;^BDh[6=K{ZBE=O>rM' , Character doubleQuote asString , 'uFE)
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    97
lFDjag1e]\/#2'.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    98
    BlitImageReader fromCompressedString:s
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    99
    "
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   100
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   101
    "Created: 9.11.1995 / 17:55:19 / cg"
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   102
    "Modified: 9.11.1995 / 17:56:07 / cg"
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   103
!
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   104
118
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   105
uncompressString:aString
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   106
    "given a compressed string (as present in mail-headers),
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   107
     return a string in 48x48x1 BlitImage fromat.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   108
     Since I am not willing to port/include the uncompface stuff into ST/X,
113
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   109
     open a pipe to the uncompressor.
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   110
     If you dont have compface/uncompface, get it from your nearest ftp server."
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   111
118
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   112
    |f s str|
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   113
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   114
    f := Filename newTemporary.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   115
    s := f writeStream.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   116
    s nextPutAll:aString.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   117
    s close.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   118
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   119
    s := PipeStream readingFrom:('uncompface ' , f name).
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   120
    s isNil ifTrue:[
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   121
	'BLITIMGREADER: no uncompface utility.' errorPrintNL.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   122
	f delete.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   123
	^ nil
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   124
    ].
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   125
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   126
    str := s contents asString.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   127
    s close.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   128
    f delete.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   129
    ^ str
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   130
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   131
    "   
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   132
     |s|
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   133
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   134
     s := '
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   135
Iqsa(US9p?)Y^W
141
977cb52010f9 double exclas in the comment
Claus Gittinger <cg@exept.de>
parents: 133
diff changeset
   136
+6Ff[Z]<t?\A!!eaL''DG{20*#{C1;''Ct&}L}B^/1(aYI@hP)4!!<}7D=2gm
977cb52010f9 double exclas in the comment
Claus Gittinger <cg@exept.de>
parents: 133
diff changeset
   137
8!!$T`8QNfK<te\20%A\`wm*wa2' , Character doubleQuote asString , '^Up*Qs' , Character doubleQuote asString ,
118
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   138
'X}KeV*3XeB2te&sKp*t`N;^BDh[6=K{ZBE=O>rM' , Character doubleQuote asString , 'uFE)
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   139
lFDjag1e]\/#2'.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   140
    BlitImageReader uncompressString:s
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   141
    "
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   142
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   143
    "Created: 9.11.1995 / 17:55:19 / cg"
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   144
    "Modified: 21.11.1995 / 19:28:41 / cg"
113
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   145
! !
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   146
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
!BlitImageReader class methodsFor:'testing'!
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
isValidImageFile:aFileName
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   150
    "return true, if aFileName contains a BlitImage image"
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
    ^ aFileName = '48x48x1'
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
    "Created: 9.11.1995 / 17:04:29 / cg"
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   155
    "Modified: 23.4.1996 / 12:48:01 / cg"
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
! !
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
!BlitImageReader methodsFor:'reading'!
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   159
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
fromStream:aStream
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   161
    "read an image in my format from aStream"
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   162
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
    |line 
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
     dstIndex "{ Class: SmallInteger }"
1846
d29322944b05 dimensionReport
Claus Gittinger <cg@exept.de>
parents: 1745
diff changeset
   165
     bytesPerRow words|
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
113
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   167
    width := height := 48.
1846
d29322944b05 dimensionReport
Claus Gittinger <cg@exept.de>
parents: 1745
diff changeset
   168
    self reportDimension.
113
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   169
    bytesPerRow := width // 8.
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
    data := ByteArray new:(bytesPerRow * height).
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
    dstIndex := 1.
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
    [aStream atEnd] whileFalse:[
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   175
        line := aStream nextLine.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   176
        line notNil ifTrue:[
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   177
            words := (line asCollectionOfSubstringsSeparatedBy:$,) asOrderedCollection.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   178
            words last isEmpty ifTrue:[
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   179
                words removeLast
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   180
            ].
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   181
            words do:[:w |
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   182
                |s bits|
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   183
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   184
                s := w readStream.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   185
                s skip:2.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   186
                bits := Integer readFrom:s radix:16 onError:0. 
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   187
                data at:dstIndex put:(bits bitShift:-8).
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   188
                data at:dstIndex+1 put:(bits bitAnd:16rFF).
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   189
                dstIndex := dstIndex + 2
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   190
            ]
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   191
        ]
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   192
    ].
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   193
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   194
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   195
    photometric := #whiteIs0.
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   196
    samplesPerPixel := 1.
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   197
    bitsPerSample := #(1)
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   198
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   199
    "
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   200
     BlitImageReader fromFile:'/tmp/faces/facedir/facedir/misc./acsnet/48x48x1'
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   201
    "
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   202
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   203
    "Created: 9.11.1995 / 17:03:04 / cg"
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   204
    "Modified: 23.4.1996 / 12:48:15 / cg"
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   205
! !
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   206
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   207
!BlitImageReader class methodsFor:'documentation'!
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   208
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   209
version
1846
d29322944b05 dimensionReport
Claus Gittinger <cg@exept.de>
parents: 1745
diff changeset
   210
    ^ '$Header: /cvs/stx/stx/libview2/BlitImageReader.st,v 1.16 2003-11-19 15:28:36 cg Exp $'
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   211
! !
1740
b692ce36d2e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
   212
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   213
BlitImageReader initialize!