BlitImageReader.st
author Claus Gittinger <cg@exept.de>
Sat, 12 May 2018 14:23:45 +0200
changeset 4088 bbf9b58f99c8
parent 3922 a82b5a12bf52
permissions -rw-r--r--
#FEATURE by cg class: MIMETypes class changed: #initializeFileInfoMappings class: MIMETypes::MIMEType added: #asMimeType #isCHeaderType #isCPPSourceType #isCSourceType
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
"
3922
a82b5a12bf52 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 1846
diff changeset
    12
"{ Package: 'stx:libview2' }"
118
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    13
3922
a82b5a12bf52 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 1846
diff changeset
    14
"{ NameSpace: Smalltalk }"
1740
b692ce36d2e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
    15
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
ImageReader subclass:#BlitImageReader
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    17
	instanceVariableNames:''
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    18
	classVariableNames:''
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    19
	poolDictionaries:''
1745
4fa0fad2a463 code cleanup (colorMap handling)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
    20
	category:'Graphics-Images-Readers'
112
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
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!BlitImageReader class methodsFor:'documentation'!
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
118
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    25
copyright 
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    26
"
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    27
 COPYRIGHT (c) 1995 by Claus Gittinger
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    28
	      All Rights Reserved
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
118
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    30
 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
    31
 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
    32
 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
    33
 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
    34
 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
    35
 hereby transferred.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    36
"
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    37
!
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    38
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    39
documentation
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    40
"
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    41
    A q&d hack to read 48x48x1 Blit images (faces)
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    42
    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
    43
    (X-face: header line).
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    44
    To support those, images can also be read from a string which is
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    45
    encoded in that format (see: #fromCompressedString:).
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    46
3922
a82b5a12bf52 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 1846
diff changeset
    47
    These images were quite common in the early 90's to annotate emails and news articles.
a82b5a12bf52 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 1846
diff changeset
    48
    The format is now completely forgotten and of no real use (except, maybe for historicans).
a82b5a12bf52 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 1846
diff changeset
    49
    
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    50
    [See also:]
234
b6352d13e792 xrefs in documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
    51
        Image Form Icon
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    52
        GIFReader FaceReader JPEGReader PBMReader PCXReader 
210
5405de794686 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 209
diff changeset
    53
        ST80FormReader SunRasterReader TargaReader TIFFReader WindowsIconReader 
209
840ddcf12904 commentary
Claus Gittinger <cg@exept.de>
parents: 206
diff changeset
    54
        XBMReader XPMReader XWDReader 
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    55
"
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    56
!
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    57
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    58
examples
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    59
"
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    60
    Image fromFile:'.../.../48x48x1'
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    61
"
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
! !
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
!BlitImageReader class methodsFor:'initialization'!
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
initialize
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    67
    "install myself in the Image classes fileFormat table
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    68
     for files named `48x48x1' (funny)."
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    69
1740
b692ce36d2e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
    70
    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
    71
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
    "
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
     BlitImageReader initialize
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
    "
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
398
aef700d15416 new suffix-table
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
    76
    "Modified: 1.2.1997 / 15:01:08 / cg"
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
! !
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
113
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
    79
!BlitImageReader class methodsFor:'special formats'!
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
    80
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    81
fromCompressedString:aString
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    82
    "given a compressed image string (such as present in mail headers),
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    83
     return a Depth1Image for it.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    84
     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
    85
     open a pipe to the uncompressor.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    86
     If you dont have compface/uncompface, get it from your nearest ftp server."
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    87
1740
b692ce36d2e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
    88
    |s|
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    89
1740
b692ce36d2e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
    90
    s := self uncompressString:aString.
b692ce36d2e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
    91
    ^ self fromStream:(s readStream).
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    92
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    93
    "   
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    94
     |s|
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    95
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    96
     s := '
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    97
Iqsa(US9p?)Y^W
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
    98
+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
    99
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
   100
'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
   101
lFDjag1e]\/#2'.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   102
    BlitImageReader fromCompressedString:s
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   103
    "
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   104
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   105
    "Created: 9.11.1995 / 17:55:19 / cg"
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   106
    "Modified: 9.11.1995 / 17:56:07 / cg"
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   107
!
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   108
118
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   109
uncompressString:aString
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   110
    "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
   111
     return a string in 48x48x1 BlitImage fromat.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   112
     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
   113
     open a pipe to the uncompressor.
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   114
     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
   115
118
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   116
    |f s str|
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   117
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   118
    f := Filename newTemporary.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   119
    s := f writeStream.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   120
    s nextPutAll:aString.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   121
    s close.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   122
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   123
    s := PipeStream readingFrom:('uncompface ' , f name).
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   124
    s isNil ifTrue:[
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   125
	'BLITIMGREADER: no uncompface utility.' errorPrintNL.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   126
	f delete.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   127
	^ nil
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   128
    ].
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   129
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   130
    str := s contents asString.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   131
    s close.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   132
    f delete.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   133
    ^ str
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   134
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   135
    "   
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   136
     |s|
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   137
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   138
     s := '
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   139
Iqsa(US9p?)Y^W
141
977cb52010f9 double exclas in the comment
Claus Gittinger <cg@exept.de>
parents: 133
diff changeset
   140
+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
   141
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
   142
'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
   143
lFDjag1e]\/#2'.
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   144
    BlitImageReader uncompressString:s
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   145
    "
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   146
7f0415d8308d new method to uncompress blit-formatted strings
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   147
    "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
   148
    "Modified: 21.11.1995 / 19:28:41 / cg"
113
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   149
! !
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   150
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
!BlitImageReader class methodsFor:'testing'!
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
isValidImageFile:aFileName
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   154
    "return true, if aFileName contains a BlitImage image"
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
    ^ aFileName = '48x48x1'
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
    "Created: 9.11.1995 / 17:04:29 / cg"
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   159
    "Modified: 23.4.1996 / 12:48:01 / cg"
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
! !
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
!BlitImageReader methodsFor:'reading'!
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
fromStream:aStream
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   165
    "read an image in my format from aStream"
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   166
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
    |line 
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
     dstIndex "{ Class: SmallInteger }"
1846
d29322944b05 dimensionReport
Claus Gittinger <cg@exept.de>
parents: 1745
diff changeset
   169
     bytesPerRow words|
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
113
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   171
    width := height := 48.
1846
d29322944b05 dimensionReport
Claus Gittinger <cg@exept.de>
parents: 1745
diff changeset
   172
    self reportDimension.
113
465cc202f0fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   173
    bytesPerRow := width // 8.
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
    data := ByteArray new:(bytesPerRow * height).
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   176
    dstIndex := 1.
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   177
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   178
    [aStream atEnd] whileFalse:[
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   179
        line := aStream nextLine.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   180
        line notNil ifTrue:[
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   181
            words := (line asCollectionOfSubstringsSeparatedBy:$,) asOrderedCollection.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   182
            words last isEmpty ifTrue:[
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   183
                words removeLast
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   184
            ].
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   185
            words do:[:w |
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   186
                |s bits|
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   187
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   188
                s := w readStream.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   189
                s skip:2.
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   190
                bits := Integer readFrom:s radix:16 onError:0. 
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   191
                data at:dstIndex put:(bits bitShift:-8).
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   192
                data at:dstIndex+1 put:(bits bitAnd:16rFF).
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   193
                dstIndex := dstIndex + 2
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   194
            ]
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   195
        ]
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   196
    ].
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   197
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
    photometric := #whiteIs0.
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   200
    samplesPerPixel := 1.
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   201
    bitsPerSample := #(1)
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
    "
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   204
     BlitImageReader fromFile:'/tmp/faces/facedir/facedir/misc./acsnet/48x48x1'
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
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   207
    "Created: 9.11.1995 / 17:03:04 / cg"
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   208
    "Modified: 23.4.1996 / 12:48:15 / cg"
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   209
! !
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   210
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   211
!BlitImageReader class methodsFor:'documentation'!
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   212
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   213
version
3922
a82b5a12bf52 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 1846
diff changeset
   214
    ^ '$Header$'
206
975f42e01bb1 commentary
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
   215
! !
1740
b692ce36d2e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
   216
3922
a82b5a12bf52 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 1846
diff changeset
   217
112
9b59ed94db13 q&d hack (for Blit faces)
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   218
BlitImageReader initialize!