Removed direct tiff writing to in-memory buffers if libtiff is used

This commit is contained in:
Ilya Lysenkov 2011-06-02 15:16:35 +00:00
parent ddd8f897fe
commit b884c3c40c

View File

@ -368,7 +368,11 @@ bool TiffDecoder::readData( Mat& img )
TiffEncoder::TiffEncoder()
{
m_description = "TIFF Files (*.tiff;*.tif)";
#ifdef HAVE_TIFF
m_buf_supported = false;
#else
m_buf_supported = true;
#endif
}
TiffEncoder::~TiffEncoder()