Is there any C/C++ lib supporting reading/writing TIFF with 32-bit samples? [closed]

StackOverflow https://stackoverflow.com/questions/19356984

  •  30-06-2022
  •  | 
  •  

문제

I want to read and write TIFF(32-bit samples) in some Qt projects. I have tried libtiff, but they only support the TIFF images with BitsPerSample=1, 2, 4, 8, or 16.

When I used them to read TIFF with 32-bit samples, I got prompt "Sorry, can not handle images with 32-bit samples."

Is there any C/C++ lib supporting reading/writing TIFF with 32-bit samples?

도움이 되었습니까?

해결책

Why dont you use QImage ? It has load() and save() operations. Also supports reading writing tiff.

다른 팁

Keep in mind your question is off topic.

But anyway FLTK is able to.

See http://www.fltk.org/index.php

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top