Commit b884c3c4 authored by Ilya Lysenkov's avatar Ilya Lysenkov

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

parent ddd8f897
......@@ -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()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment