1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

imgcodecs: fix libtiff homepage

This commit is contained in:
Kumataro
2023-08-27 19:49:37 +09:00
parent 588ddf1b18
commit 4b1a4bdb49
2 changed files with 6 additions and 4 deletions
+3 -3
View File
@@ -245,7 +245,7 @@ bool TiffDecoder::readHeader()
if (!tif)
{
// TIFFOpen() mode flags are different to fopen(). A 'b' in mode "rb" has no effect when reading.
// http://www.remotesensing.org/libtiff/man/TIFFOpen.3tiff.html
// http://www.simplesystems.org/libtiff/functions/TIFFOpen.html
if ( !m_buf.empty() )
{
m_buf_pos = 0;
@@ -1118,7 +1118,7 @@ public:
TIFF* open ()
{
// do NOT put "wb" as the mode, because the b means "big endian" mode, not "binary" mode.
// http://www.remotesensing.org/libtiff/man/TIFFOpen.3tiff.html
// http://www.simplesystems.org/libtiff/functions/TIFFOpen.html
return TIFFClientOpen( "", "w", reinterpret_cast<thandle_t>(this), &TiffEncoderBufHelper::read,
&TiffEncoderBufHelper::write, &TiffEncoderBufHelper::seek,
&TiffEncoderBufHelper::close, &TiffEncoderBufHelper::size,
@@ -1200,7 +1200,7 @@ static bool readParam(const std::vector<int>& params, int key, int& value)
bool TiffEncoder::writeLibTiff( const std::vector<Mat>& img_vec, const std::vector<int>& params)
{
// do NOT put "wb" as the mode, because the b means "big endian" mode, not "binary" mode.
// http://www.remotesensing.org/libtiff/man/TIFFOpen.3tiff.html
// http://www.simplesystems.org/libtiff/functions/TIFFOpen.html
TIFF* tif = NULL;
TiffEncoderBufHelper buf_helper(m_buf);