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
2 answers

Using libtiff's TIFFReadRawTile to get a jpeg tile without decompression/compression

i've a pyramidal tiled tiff file and I want to extract the tiles without decoding and re-encoding the jpeg, i've seen that using TIFFReadRawTile() function you can extract the raw tile without decoding, how can i write the extracted buffer to a…
alex88
  • 4,788
  • 4
  • 39
  • 60
0
votes
1 answer

How to save tif with colormap (palette) in C++

I tried OpenCV in vain to save indexed8bpp image with a colormap as a tif file. For this project, GDI+ is not an option. I already downloaded libtiff library, but it seems too big for me. Is there anything else? I am not as picky as I would sound.…
Tae-Sung Shin
  • 20,215
  • 33
  • 138
  • 240
0
votes
1 answer

configure error while checking dependency on libtiff

I have configured and make libtiff properly. Now I am trying to build another library which is dependent on the tiff library. I am getting the following error checking for TIFF support ... checking tiff.h usability... yes checking tiff.h presence...…
Debjit
  • 410
  • 5
  • 16
0
votes
1 answer

Have problems installing imagemagick in particular with brew link libtiff

Basically I am trying to install imagemagick using brew and got the following error. [~]$ brew install imagemagick ==> Installing imagemagick dependency: libtiff ==> Downloading http://download.osgeo.org/libtiff/tiff-4.0.1.tar.gz Already downloaded:…
John Lee
  • 1,241
  • 2
  • 16
  • 29
0
votes
1 answer

Edit existing TIFF file with LibTiff

Can someone share an example of how to edit an existing TIFF image using LibTiff in C#. For example, how can I add the current date on the top right corner to each page in a multi-page TIFF image?
mcpunjabi
  • 1
  • 1
-1
votes
1 answer

TIFF How to place images in an orderly manner

Friends! I have a set of small images that I need to lay out as a table in a Tiff file. How the files should look like in the final file: I use the LibTIFF library for this. Tell me how this can be implemented? I implement my solution in C #, but…
Maxim_A
  • 183
  • 2
  • 13
-1
votes
1 answer

Linker errors with CImg and libtiff on Xcode

I can't get libtiff to successfully link for an application that uses CImg. I've installed libtiff with brew, nothing, compiled libtiff from sources and installed still nothing (where's the libtiff.a after compilation btw?) I've added the path in…
-1
votes
3 answers

Powershell - Argument with a space errors with both single and double quotes

This code takes a directory with tiffs, uses the tiflib tiffcp.exe and inserts another tiff at page one that is a copyright notice. The part that continually errors is when I call the compression. & $tool -c lzw The error it gives is & $tool -c…
extispex
  • 51
  • 1
  • 5
-2
votes
1 answer

Can we manipulate TIFF image attributes such as rowsperstrip to achieve further compression?

Libtiff gives functions to manipulate TIFF image attributes, my code uses such functions, but I am having some issues using them. This lead me to thinking, does changing attribute values of a TIFF image really help us achieve compression? Am i…
harsha217
  • 72
  • 1
  • 11
-4
votes
1 answer

Saving images as .tif without Libtiff [edited]

Does anyone have a simple example of how to use libTiff in xcode for ios7? The example that used to be on IBM's site has been taken down, and I have no idea where to start! I have a small 300x300 B&W UIImage (currently being output as a PNG…
CHiroshiWard
  • 163
  • 1
  • 11
1 2 3
20
21