BlitImageReader.st
changeset 398 aef700d15416
parent 259 62b1bbafd9ba
child 647 6f26c76aa0c9
equal deleted inserted replaced
397:7ad4e53d8f49 398:aef700d15416
    59 
    59 
    60 initialize
    60 initialize
    61     "install myself in the Image classes fileFormat table
    61     "install myself in the Image classes fileFormat table
    62      for files named `48x48x1' (funny)."
    62      for files named `48x48x1' (funny)."
    63 
    63 
    64     Image fileFormats at:'48x48x1'  put:self.
    64     Image addReader:self suffix:'48x48x1'
    65 
    65 
    66     "
    66     "
    67      BlitImageReader initialize
    67      BlitImageReader initialize
    68     "
    68     "
    69 
    69 
    70     "Modified: 23.4.1996 / 12:47:48 / cg"
    70     "Modified: 1.2.1997 / 15:01:08 / cg"
    71 ! !
    71 ! !
    72 
    72 
    73 !BlitImageReader class methodsFor:'special formats'!
    73 !BlitImageReader class methodsFor:'special formats'!
    74 
    74 
    75 fromCompressedString:aString
    75 fromCompressedString:aString
   217 ! !
   217 ! !
   218 
   218 
   219 !BlitImageReader class methodsFor:'documentation'!
   219 !BlitImageReader class methodsFor:'documentation'!
   220 
   220 
   221 version
   221 version
   222     ^ '$Header: /cvs/stx/stx/libview2/BlitImageReader.st,v 1.11 1996-05-10 16:45:09 cg Exp $'
   222     ^ '$Header: /cvs/stx/stx/libview2/BlitImageReader.st,v 1.12 1997-02-01 14:05:39 cg Exp $'
   223 ! !
   223 ! !
   224 BlitImageReader initialize!
   224 BlitImageReader initialize!