Questions tagged [libtiff]

Open source, cross-platform library and tools for TIFF images.

Project homepage

This software provides support for the Tag Image File Format (TIFF), a widely used format for storing image data.

Included in this software distribution is a library, libtiff, for reading and writing TIFF, a small collection of tools for doing simple manipulations of TIFF images on UNIX systems, and documentation on the library and tools. A small assortment of TIFF-related software for UNIX that has been contributed by others is also included.

The library, along with associated tool programs, should handle most of your needs for reading and writing TIFF images on 32- and 64-bit machines. This software can also be used on older 16-bit systems though it may require some effort and you may need to leave out some of the compression support.

310 questions
0
votes
1 answer

Extract Pixel Information (dl) Using LibTIFF

My final goal is to implement cloud detection algorithm with C++. However, I faced a problem. I have an issue with extracting information from pixels. For data pre-processing, SNAP was used and I can see a lot of information there for a given pixel…
Mantas
  • 33
  • 7
0
votes
0 answers

Reverse Engineering proprietary TIFF format

I'm deep in the weeds reverse engineering a very old proprietary document storage format (Keyfile). Embedded in the middle of a larger file is a block of image data (the scan of a single document page) that is encoded with CCITT4. I've learned…
Andrew
  • 421
  • 2
  • 12
0
votes
1 answer

[yocto-Jethro]Neet to compile

I am stucking for compiling for libtiff i am sorry for inconvient because of second time to meet yocto. i am lost. on reading a document yocto 2.o jethro 5.8.6. Extra Development/Debug Package Cleanup¶ The following recipes have had extra dev/dbg…
kevinpark
  • 19
  • 2
0
votes
1 answer

Displaying editable image in c#

I want to display an image (.tif, gray value 16 bit) which is editable for the user via sliders. The displayed image should directly react to the changes, so the user knows what he's doing to the image. Currently I only seem to be creating new files…
sterlingberger
  • 63
  • 1
  • 10
0
votes
1 answer

Value/offset in Tiff field/ IFD entry of TIFF image

I have an image with following IFD entries 01 00 00 03 00 00 00 01 09 A0 00 00 01 01 00 03 00 00 00 01 0C B0 00 00 . . . 01 0D 00 02 00 00 00 0E 00 00 DF A2 . . Here Tag ID - 010D (which is document name) Tag type - 0002 (ASCII) Count -0000000E …
Bhaskar
  • 41
  • 1
  • 6
0
votes
0 answers

How tiff image IFDs are stored in memory

I am using tiff 4.0.8 (libtiff) Ubuntu 14.04 Tiff 6.0 specifications When a tiff image is opened on the computer, how IFDs(Image File Directory) are stored in memory. I guess IFDs are stored randomly in memory with data structures linking.
Bhaskar
  • 41
  • 1
  • 6
0
votes
0 answers

ImportError: [...] Library not loaded [...] Reason: Incompatible library version

I just downloaded scikit-image and I got an error message by simply trying to import the packages to run a tutorial example of the scikit website ("Gabor filter banks for texture classification"). See error message below. I re-installed libtiff…
Platkow
  • 1
  • 1
0
votes
1 answer

Save an opengl texture in tiff file from an other thread

I'm trying to save a texture in tiff file from an other thread. But the only result i get is a white picture, I think it come from the glcontext ( because it's not possible to have one glcontext for several thread). That's why i've tried to create…
miyoku
  • 107
  • 1
  • 13
0
votes
1 answer

Is there a quicker way to extract floats from a 32 bit tiff than LibTIFF?

I am currently using this to extract floats: TIFF* tiff = TIFFOpen(tiffs[i].c_str(), "r"); if (tiff) { uint32 width, height; tsize_t scanlength; if (TIFFGetField(tiff,TIFFTAG_IMAGEWIDTH, &width) != 1) {} if…
user8149522
0
votes
0 answers

WindowsError: [Error 193] %1 is not a valid Win32 application when installing libtiff

I have been attempting to install libtiff for python 2.7 using Anaconda 4.2.0 terminal: conda install libtiff pip install libtiff I installed the libtiff library (GnuWin32) and have specified the directory of libtiff3.dll on my environment variable…
Adam B.
  • 1
  • 1
0
votes
1 answer

Tiff Editing: How to add text to existing tif file?

I am trying to add some random text to right top corner of the every tif image file. How I can do this using libtif.NET library. Please Help
Mankutimma
  • 103
  • 1
  • 8
0
votes
1 answer

Transaction Check Error when installing ImageMagick-devel

I'm trying to install the RMagick gem on a Fedora box. To do so I need to install ImageMagick-devel. While installing ImageMagick-devel, I ran into the following error: Transaction Check Error: file /usr/lib64/libtiff.so from install of…
Sara Fuerst
  • 5,688
  • 8
  • 43
  • 86
0
votes
2 answers

Generated binary is linked to use system instead of local library

My build system has libtiff installed in this path: /usr/lib/x86_64-linux-gnu/libtiff.so.5.2.4 And I have built a custom libtiff in a local path: /home/user/libtiff/usr/local/lib/libtiff.so.3.8.2 I want to build a binary linked with libtiff…
aicastell
  • 2,182
  • 2
  • 21
  • 33
0
votes
1 answer

Build a command line tool without dynamically linking to specific file location (macOS)

I'm working on a small utility that uses the libtiff tools tiff2pdf and tiffcp. I would like to be able to distribute it with the binaries for those two tools so that it could be run from wherever it is downloaded to. I've built libtiff following…
arsenius
  • 12,090
  • 7
  • 58
  • 76
0
votes
1 answer

How am I supposed to include LibTIFF (Qt)?

I tried writing include (C:\Qt\Qt5.3.2\5.3\Src\qtimageformats\src\3rdparty\libtiff.pri) in .pro file, but received Project has no top-level .qmake.conf file. I tried to #include…
J. Doe
  • 1
  • 1