TIFFReader.st
changeset 647 6f26c76aa0c9
parent 623 ea587e8fd435
child 743 43be299fc515
equal deleted inserted replaced
646:1068ac078d10 647:6f26c76aa0c9
    71 
    71 
    72 initialize
    72 initialize
    73     "install myself in the Image classes fileFormat table
    73     "install myself in the Image classes fileFormat table
    74      for the `.tiff' and `.tif' extensions."
    74      for the `.tiff' and `.tif' extensions."
    75 
    75 
    76     Image addReader:self suffix:'tiff' mimeType:'image/tiff'.
    76     MIMETypes defineImageType:'image/tiff' suffix:'tif'  reader:self.
    77     Image addReader:self suffix:'tif'.
    77     MIMETypes defineImageType:nil          suffix:'tiff' reader:self.
    78 
    78 
    79     "
    79     "
    80      self initialize
    80      self initialize
    81     "
    81     "
    82 
    82 
  2093 ! !
  2093 ! !
  2094 
  2094 
  2095 !TIFFReader class methodsFor:'documentation'!
  2095 !TIFFReader class methodsFor:'documentation'!
  2096 
  2096 
  2097 version
  2097 version
  2098     ^ '$Header: /cvs/stx/stx/libview2/TIFFReader.st,v 1.55 1997-06-24 20:05:02 cg Exp $'
  2098     ^ '$Header: /cvs/stx/stx/libview2/TIFFReader.st,v 1.56 1997-06-30 20:56:20 cg Exp $'
  2099 ! !
  2099 ! !
  2100 TIFFReader initialize!
  2100 TIFFReader initialize!