BlitImageReader.st
changeset 3922 a82b5a12bf52
parent 1846 d29322944b05
equal deleted inserted replaced
3921:58dbf336ced2 3922:a82b5a12bf52
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 "{ Package: 'stx:libview2' }"
    12 "{ Package: 'stx:libview2' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
    14 
    15 
    15 ImageReader subclass:#BlitImageReader
    16 ImageReader subclass:#BlitImageReader
    16 	instanceVariableNames:''
    17 	instanceVariableNames:''
    17 	classVariableNames:''
    18 	classVariableNames:''
    18 	poolDictionaries:''
    19 	poolDictionaries:''
    41     A variation of this format is also used to pass face-icons in mail headers
    42     A variation of this format is also used to pass face-icons in mail headers
    42     (X-face: header line).
    43     (X-face: header line).
    43     To support those, images can also be read from a string which is
    44     To support those, images can also be read from a string which is
    44     encoded in that format (see: #fromCompressedString:).
    45     encoded in that format (see: #fromCompressedString:).
    45 
    46 
       
    47     These images were quite common in the early 90's to annotate emails and news articles.
       
    48     The format is now completely forgotten and of no real use (except, maybe for historicans).
       
    49     
    46     [See also:]
    50     [See also:]
    47         Image Form Icon
    51         Image Form Icon
    48         GIFReader FaceReader JPEGReader PBMReader PCXReader 
    52         GIFReader FaceReader JPEGReader PBMReader PCXReader 
    49         ST80FormReader SunRasterReader TargaReader TIFFReader WindowsIconReader 
    53         ST80FormReader SunRasterReader TargaReader TIFFReader WindowsIconReader 
    50         XBMReader XPMReader XWDReader 
    54         XBMReader XPMReader XWDReader 
   205 ! !
   209 ! !
   206 
   210 
   207 !BlitImageReader class methodsFor:'documentation'!
   211 !BlitImageReader class methodsFor:'documentation'!
   208 
   212 
   209 version
   213 version
   210     ^ '$Header: /cvs/stx/stx/libview2/BlitImageReader.st,v 1.16 2003-11-19 15:28:36 cg Exp $'
   214     ^ '$Header$'
   211 ! !
   215 ! !
       
   216 
   212 
   217 
   213 BlitImageReader initialize!
   218 BlitImageReader initialize!