Project homepage The .NET version of original libtiff library. LibTiff.Net provides support for the Tag Image File Format (TIFF), a widely used format for storing image data. LibTiff.Net is freely available for all uses under the New BSD license. Features: Free for use in any library, ...
11
votes
5answers
139 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 ...
4
votes
3answers
5k views
Using LibTiff from C# (to access tiled TIFF images)
I'd like to use LibTiff to access very large TIFF files. I need functions like multiple pages and tiles, and so LibTiff seems to be the right way to go. Can anyone help me on how to use LibTiff from ...
3
votes
2answers
665 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 ...
2
votes
1answer
398 views
Remove/Delete Page from multipage TIFF file
I need to delete a page from a multipaged TIFF file. I am currently working in .NET but can move to another language if some one knows how to do it in that language.
The page would be either the ...
2
votes
1answer
439 views
How to display CCITT Group 4 TIFF files in Silverlight?
According to How to Convert TIFF to JPG Inside Silverlight, client side, using a control or a class/function? I tried to port LibTiff.NET library to Silverlight, but failed.
I will be very grateful ...
2
votes
2answers
1k views
Use libtiff in C# to convert from one TIFF format to another
I have a TIFF using JPEG format the WPF / C# can not handle via TiffBitmapDecoder. Our clients use the file format and our current C++ and Java code handles it.
I need to convert this to a format I ...
1
vote
1answer
13 views
How can I delete tiff tags using the LibTiff.Net 2.3 library
I can't seem to find any documentation of how to delete a tiff tag using the LibTiff.Net library. I love the library but this one method is important to what I need to do. At one point I was hoping ...
1
vote
2answers
81 views
Convert Tif indexed 8-bit colour to 32-bit colour
I have an indexed Tiff image which I'm reading using LibTiff.Net to produce a bitmap image of a section of the large image. I believe the Tiff will have 256 colour entries which I want to convert to ...
1
vote
1answer
103 views
C#: How to create a TIFF file that's readable by tesseract OCR?
I want to let tesseract ORC run over an image file, to scan the content.
The problem seems to be that tesseract not only requires TIFF, but it also requires the tiff file to be in a certain format.
...
1
vote
1answer
174 views
Converting TIFF to JPEG using .NET
I need to convert a TIFF to JPEG using .NET.
I have already done this succesfully using Windows 7 with a simple Bitmap.Save(). But it seems that this doesn't work on Windows XP (Windows 7 has more ...
1
vote
1answer
454 views
Tiff loaded from Stream via LibTiff.Net has no field values
My application has to handle TIFF files that are stored in a MemoryStream, but LibTiff.Net always returns null for the field values.
MemoryStream ms = new MemoryStream();
FileStream ...
1
vote
1answer
462 views
LibTiff.Net color image conversion
I am using Bit Miracle LibTiff.Net.
I cannot find any sample code to take a 32bpp ARGB colour image and write the bitmap to a TIFF using this library.
Has anyone else attempted this?
Here is my ...
0
votes
1answer
18 views
Version of Windows Imaging Component
How can I check what version of Windows Imaging Component is installed on a Windows machine? I suspect the Windows 2008 Servers used in Azure do not have the same version that I have on my Windows 7 ...
0
votes
0answers
16 views
is there anyway to write a tiff file to memory and then saving it to a file using libtiff.net?
i have a tiff file which has the following specification :
bit per sample : 16
sample per pixel :50
photometric : rgb
PLANAR CONFIG : separate
there are 50 sample per pixel. it means that there ...
0
votes
0answers
54 views
How to display TIFF images in Silverlight 4 that generate OutOfMemory Errors
I am writing a TIFF image viewer in Silverlight 4 that will display as a scrollable image I am using BitMiracle's LibTiff to read the tiff pages, generate thumbnails, and as they click through the ...
0
votes
1answer
145 views
Split a TIFF File
I need to split TIFF file to many files (each page in a separate file).
I wrote a function but splitting of a large amount of files takes time :/
Then I was searching for a library to do the split ...
0
votes
1answer
221 views
How to use Bit Miracle LibTiff.Net to write the image to a MemoryStream
I received a Image compressed using CCITTFaxDecode. So I used LibTiff.Net from Bit Miracle to be able to convert the image to any format.
I need to write the decompressed image to a MemoryStream. I ...
0
votes
1answer
83 views
Adding custom metadata tags using LibTiff.Net
I now how to add a custom tag to an image but it's not showing up as the tag name in image viewer. I only see the number I assigned and its value.
Why there is no proper name for my custom tag?
...
0
votes
1answer
101 views
Edit TIFF image without changing header data
I have a program that takes in stacks of TIFF images and is very particular about the header data (it expects all headers to be the same), however I want to edit a couple of the images in the stack ...