------------------------------------------------------------------------------
| 1366 | |
| 1367 | //------------------------------------------------------------------------------ |
| 1368 | int vtkTIFFReader::CanReadFile(const char* fname) |
| 1369 | { |
| 1370 | vtkTIFFReaderInternal tf; |
| 1371 | int res = tf.Open(fname); |
| 1372 | tf.Clean(); |
| 1373 | if (res) |
| 1374 | { |
| 1375 | return 3; |
| 1376 | } |
| 1377 | return 0; |
| 1378 | } |
| 1379 | |
| 1380 | //------------------------------------------------------------------------------ |
| 1381 | void vtkTIFFReader::PrintSelf(ostream& os, vtkIndent indent) |