Tagged Questions

TIFF (originally standing for Tagged Image File Format) is a file format for storing images.

learn more… | top users | synonyms (1)

20
votes
14answers
21k views

Best way to convert pdf files to tiff files

I have around 1000 pdf filesand I need to convert them to 300 dpi tiff files. What is the best way to do this? If there is an SDK or something or a tool that can be scripted that would be ideal.
15
votes
8answers
18k views

Java based OCR SDK/API

Are there any good OCR (optical character recognition) SDK or APIs in Java which will be able to convert TIFF files to txt files (or even html is good enough) with some sort of format retention? The ...
10
votes
3answers
93 views

Open huge TIF in .NET and copy parts to new image

I'm looking for a library that can open and copy sections of a large TIFF file. I've looked at LibTiff.Net which opens the file very quickly but it doesn't have any functions for cropping or copying ...
9
votes
3answers
9k views

Convert bitmaps to one multipage TIFF image in .NET 2.0

How can i convert an array of bitmaps into a brand new image of TIFF format, adding all the bitmaps as frames in this new tiff image? using .NET 2.0.
9
votes
5answers
3k views

Is there a way to infer what image format a file is, without reading the entire file?

Is there a good way to see what format an image is, without having to read the entire file into memory? Obviously this would vary from format to format (I'm particularly interested in TIFF files) ...
8
votes
7answers
2k views

How to detect if a file is PDF or TIFF?

Please bear with me as I've been thrown into the middle of this project without knowing all the background. If you've got WTF questions, trust me, I have them too. Here is the scenario: I've got a ...
6
votes
5answers
261 views

Similar functionality for java to struct for python

I have a program that I made in Python to find specific tags in TIFF IFD's and return the values. It was just a proof of concept thing in python, and now I need to move the functionality to java. I ...
6
votes
5answers
1k views

efficient TIFF tile extraction C++

I am working with 1gb large tiff images of around 20000 x 20000 pixels. I need to extract several tiles (of about 300x300 pixels) out of the images, in random positions. I tried the following ...
6
votes
2answers
4k views

Good Tiff library for .NET

I know libtiff for C, but haven't found a port for .NET update I found FreeImage, which is based on several different libraries and provides a .NET wrapper.
5
votes
3answers
954 views

Java library for reading and writing IPTC metadata to JPEG and TIFF

Does anyone know some opensource Java library for reading and writing IPTC metadata to JPEG and TIFF? Now I'm using Apache Sanselan. Unfortunately, it can only read IPTC, not write ...
5
votes
2answers
698 views

How can I write a GEOTIFF in Java?

I want to write a GEOTIFF, with all the geographic metadata in Java. Which library etc. works best for this purpose?
5
votes
4answers
969 views

convert bitonal TIFF to bitonal PNG in C#

I need to convert bitonal (black and white) TIFF files into another format for display by a web browser, currently we're using JPGs, but the format isn't crucial. From reading around .NET doesn't seem ...
5
votes
3answers
5k views

How do I convert a TIF to PNG in Java?

Under Java what is the best way to go about converting an TIF file to a PNG? Simplicity is preferable, but if the simplest way is to use a third party library then I would consider that solution.
5
votes
1answer
179 views

Library support for very high dynamic range TIFF files?

I work with satellite radar, and have been provided with a (very) large TIFF file containing 32 bpp greyscale data. Unfortunately, libtiff, the standard Linux library for working with TIFF files, ...
5
votes
2answers
7k views

Display TIFF image in all web browser

How to handle [TIFF][1] file in HTML pages? I want to display a TIFF file in my HTML page. I have tried using embedded tag, object id, img, etc. But I am unable to display the image (TIFF) in the ...
5
votes
5answers
414 views

Self-describing file format for gigapixel images?

In medical imaging, there appears to be two ways of storing huge gigapixel images: Use lots of JPEG images (either packed into files or individually) and cook up some bizarre index format to ...
5
votes
2answers
1k views

Having an image file buffer in memory, what is the fastest way to create its thumbnail?

Trying to create a an image acquiring application optimized for a fast scanner (which can provide up to 6 compressed images [color+gray+binary][front+rear] for each paper at speed of 150 ppm) I have ...
5
votes
2answers
1k views

PDF to TIFF free library in Windows?

i've got a hundred pages long high quality PDF (66MB) that needs to be converted to TIFF format (300 dpi, as high quality as possible :P). I've tried Imagemagick/ghostscript, jpedal, Poppler, XPDF ...
5
votes
7answers
9k views

Java API to convert JPEG to TIFF

I am looking at java APIs to convert JPEG file streams to TIFF files. I looked at the JAI but did not find something similar to what i am looking at. Can someone point me to a good API which does ...
5
votes
10answers
15k views

A good library for converting PDF to TIFF?

I need a Java library to convert PDFs to TIFF images. The PDFs are faxes, and I will be converting to TIFF so that I can then do barcode recognition on the image. Can anyone recommend a good library ...
5
votes
7answers
2k views

Free tool or library to convert Tiff files to pdf in .Net

Does any one know of a free tool or library to convert multi page tiffs to pdf in Asp.Net 1.1?
4
votes
1answer
249 views

C# TIFF Bit Wise Check

I am trying to determine if a 1BPP indexed TIFF image is using a white pixel or black pixel. To check if my code was correct , I made the application draw the same image it proccessed onto a new ...
4
votes
3answers
1k views

Python: Manipulating a 16-bit .tiff image in PIL &/or pygame: convert to 8-bit somehow?

Hello all, I am working on a program which determines the average colony size of yeast from a photograph, and it is working fine with the .bmp images I tested it on. The program uses pygame, and ...
4
votes
2answers
630 views

Add a file association with tiff files on iOS

I'd like to create a file associate with tiff files in my iOS app (i.e. so that my app appears as a target for opening tiff files from Mail or Safari). Adding the following to my Info.plist file ...
4
votes
4answers
794 views

To load .tiff file in C#

I have to load .tiff file I did with both Image.FromFile() and Bitmap.FromFile() But they are throwing OutOfMemoryException Any solution for how to load this?
4
votes
3answers
612 views

WPF BitmapImage and TIFF with CMYK + Alpha

I am using this code snippet to load various image files: BitmapImage bitmap = new BitmapImage (); bitmap.BeginInit (); bitmap.UriSource = new System.Uri (path); bitmap.CreateOptions = ...
4
votes
4answers
3k views

Saving plot to tiff, with high resolution for publication (in R)

A Journal we are sending an article to is asking for the following: To ensure the best reproduction quality of your figures we would appreciate high resolution files. All figures should preferably ...
4
votes
1answer
3k views

C# Splitting Multi-page Tiff into Single Tiff's on Windows 7 / .Net 4.0

I recently moved to a new development box from Windows XP 32 Bit to Windows 7 64 bit. Both machines are running .Net Framework version 4.0 for development with Visual Studio 2010. After upgrading to ...
4
votes
2answers
2k views

Obtain Latitude and Longitude from a GeoTIFF File

Using GDAL in Python, how do you get the latitude and longitude of a GeoTIFF file? GeoTIFF's do not appear to store any coordinate information. Instead, they store the XY Origin coordinates. ...
4
votes
2answers
1k views

WPF Image control to progressively load multipage tiff

I'm wondering if there's an existing control or if it would be straightforward to develop a control allowing a multipage tiff to be progressively loaded over a network? I'm working with some tiff ...
4
votes
5answers
4k views

How do I display tiff files on Silverlight?

How do I display tiff files on a Silverlight application? I can display any image format except tiff, can anyone help me? Thanks.
4
votes
3answers
666 views

What is the best web viewable format to save a TIF with a 1 bit depth?

I want to convert tif to an image type that is viewable in a web page. The tifs are black and white so jpg does not work well at all and end up even larger. Here are some tests I have made so far ...
4
votes
4answers
2k views

How to serve high-resolution imagery in a low-resolution form using C#

Trying to use 300dpi tif images for display on the web. At the moment, when the user uploads an image, I am dynamically creating a thumbnail. If a page is created referencing the high-res image with a ...
4
votes
1answer
1k views

How do you specify the specific Group 3 tiff compression?

Group 3 compress has 2 variations (Group 3 1D and Group 3 2D). When saving an image in Tiff format, there is only one option for Group 3 in the EncoderValue enumeration. Is there a separate parameter ...
3
votes
1answer
91 views

How to embed a small image on top of another image and save it using JavaScript?

I have a large image tif format and two small images. What I wanted to achieve is that I want to embed either of the two small images on top of a large image and save it using JavaScript. ...
3
votes
2answers
265 views

16-bit grayscale TIFF

What is the bit-format of a 16-bit grayscale TIFF? I read that only 10 bits actually contain intensity data--is this true? When I try to open a 16-bit TIFF in Matlab using imshow(), the image is ...
3
votes
2answers
608 views

How to display TIFF (in form of Byte[]) on Silverlight Image control

I created a window service to put all of my TIFF files into database and stored them as Byte[]. Now I want to be able to display them through Silverlight Image control So i use the Converter during ...
3
votes
2answers
406 views

How do I handle a huge tif in WPF?

I have an 8bit tiff thats 14406x9606 pixels that when loaded via BitmapImage throws a System.OutOfMemoryException. As a full depth bitmap its about 400 megs in size. Is there a way to partition the ...
3
votes
3answers
1k views

ImageMagick or GhostScript: convert a multi-page TIFF to a multi-page PDF

I need to convert a multi-page TIFF to a multi-page PDF. I have access to ImageMagick and GhostScript (in *nix environment). How do I do this? Thanks. UPDATE: It turns out that my test file was ...
3
votes
1answer
1k views

.Net Image.Save changes tiff from CTTIT Fax 4 to LZW

When I rotate an image, .Net switches the tiff encoding. Is there a way I can keep the CCITT Fax 4 (Group 4 Fax encoding) and not have it switch to LZW? Here is how I am rotating an image on disk. ...
3
votes
4answers
1k views

Read a tiff file's dimension and resolution without loading it first

How to read a tiff file's dimension (width and height) and resolution (horizontal and vertical) without first loading it into memory by using code like the following. It is too slow for big files and ...
3
votes
2answers
167 views

converting tiff to gif in php

I need to convert tiff file to gif . can some one give me php or python script to do that ?
3
votes
2answers
473 views

Wrong colours when converting TIFF image to PNG in ImageMagick

I'm working on a PHP script that automatically converts TIFF images to PNG files. For that purpose, I use ImageMagick: $ convert a.tif a.png It works to some degree, however, the colours are very ...
3
votes
8answers
3k views

Converting PDF to TIFF or text in C#

I need a library to convert PDF to text or TIFF in C# - preferably open source under a permissive licence. Currently using xpdf but as I understand the GPL I can't compile it into a DLL and link to it ...
3
votes
2answers
3k views

When creating an bitmap image from scratch in VB.Net, the quality stinks?

The Vb.Net application creates a bitmap from scratch and either converts to a tiff or sends it to a printer. In both cases, the quality of the image (in this case the font) is not good at all. The ...
3
votes
3answers
5k views

Can't read and write a TIFF image file using Java ImageIO standard library

I don't know what to do with TIFF images, but I can't read or write any of them using straight Java standard ImageIO library. Any thoughts? Thanks.
3
votes
2answers
740 views

Splitting a multipage TIFF image - With .NET and IronPython

I had a scanned multipage TIFF image and needed to split each page out into individual files. This is easy to do in by leveraging the .NET framework and C#, but since I did not have all the ...
3
votes
3answers
2k views

Converting TIFF files to PNG in .Net

I have to build an application in .Net (3.5) to pick up a TIFF file saved from another piece of software and convert it into a PNG so that it can be rendered easily in Internet Explorer. Does anyone ...
3
votes
8answers
10k views

Ghostscript PDF -> TIFF conversion is awful for me, people rave about it, I alone look sullen

My stomach churns when I see this kind of output. and this was my command as suggested by http://stackoverflow.com/questions/75500/best-way-to-convert-pdf-files-to-tiff-files#221341 gswin32c.exe ...
3
votes
2answers
2k views

HTML to Image .tiff File

Is there a way to convert a HTML string into a Image .tiff file? I am using C# .NET 3.5. The requirement is to give the user an option to fact a confirmation. The confirmation is created with XML ...

1 2 3 4 5 8