@@ -245,7 +245,7 @@ bool TiffDecoder::readHeader()
245245 if (!tif)
246246 {
247247 // TIFFOpen() mode flags are different to fopen(). A 'b' in mode "rb" has no effect when reading.
248- // http://www.remotesensing .org/libtiff/man /TIFFOpen.3tiff .html
248+ // http://www.simplesystems .org/libtiff/functions /TIFFOpen.html
249249 if ( !m_buf.empty () )
250250 {
251251 m_buf_pos = 0 ;
@@ -1118,7 +1118,7 @@ class TiffEncoderBufHelper
11181118 TIFF* open ()
11191119 {
11201120 // do NOT put "wb" as the mode, because the b means "big endian" mode, not "binary" mode.
1121- // http://www.remotesensing .org/libtiff/man /TIFFOpen.3tiff .html
1121+ // http://www.simplesystems .org/libtiff/functions /TIFFOpen.html
11221122 return TIFFClientOpen ( " " , " w" , reinterpret_cast <thandle_t >(this ), &TiffEncoderBufHelper::read,
11231123 &TiffEncoderBufHelper::write, &TiffEncoderBufHelper::seek,
11241124 &TiffEncoderBufHelper::close, &TiffEncoderBufHelper::size,
@@ -1200,7 +1200,7 @@ static bool readParam(const std::vector<int>& params, int key, int& value)
12001200bool TiffEncoder::writeLibTiff ( const std::vector<Mat>& img_vec, const std::vector<int >& params)
12011201{
12021202 // do NOT put "wb" as the mode, because the b means "big endian" mode, not "binary" mode.
1203- // http://www.remotesensing .org/libtiff/man /TIFFOpen.3tiff .html
1203+ // http://www.simplesystems .org/libtiff/functions /TIFFOpen.html
12041204 TIFF* tif = NULL ;
12051205
12061206 TiffEncoderBufHelper buf_helper (m_buf);
0 commit comments