您的位置:首页 > 健康 > 养生 > VS2019配置TIFF

VS2019配置TIFF

2025/1/3 11:36:52 来源:https://blog.csdn.net/qq_52646857/article/details/142300722  浏览:    关键词:VS2019配置TIFF

1.下载

Index of /libtiff/ (osgeo.org)

2.配置

3.使用

4.测试程序

#include <iostream>
#include <cstdint> // 包含 stdint.h 头文件
#include "tiffio.h"int main()
{std::cout << "Hello World!\n";// 打开一个 TIFF 文件const char* filename = "D://test//ImageAnalysis//JL1GF06A23_PMS_20240712205830_200281859_103_0010_001_L0_MSS.tif";TIFF* tiff = TIFFOpen(filename, "r");if (tiff) {std::cout << "TIFF file opened successfully.\n";uint32_t width, height; // 使用 uint32_t 和 uint16_tuint16_t samplesPerPixel;// 获取图像的宽度和高度TIFFGetField(tiff, TIFFTAG_IMAGEWIDTH, &width);TIFFGetField(tiff, TIFFTAG_IMAGELENGTH, &height);TIFFGetField(tiff, TIFFTAG_SAMPLESPERPIXEL, &samplesPerPixel);std::cout << "Image dimensions: " << width << "x" << height << "\n";std::cout << "Samples per pixel: " << samplesPerPixel << "\n";// 关闭 TIFF 文件TIFFClose(tiff);}else {std::cerr << "Failed to open TIFF file.\n";}return 0;
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com