Tagged Questions
-1
votes
0answers
19 views
tiff image to jpeg or png [duplicate]
I want to convert a tiff image to jpeg or png. but my tiff image has CCITT compression. I don't know how to convert it by JAI. I used some sample code but they don't work on CCITT compression tiff. ...
0
votes
0answers
24 views
TiffIFilter Limitations
I've found that the TiffIFilter fails to OCR certain images. Upon visual inspection there doesn't seem to be anything special about them... There's no hint of a failure (an exception) it just returns ...
0
votes
0answers
41 views
Reduce image size after converting to tiff image with compression type
public boolean convertToTiff(File tiffFile, BufferedImage image) {
ImageOutputStream ios = null;
ImageWriter writer = null;
try {
// find an appropriate writer
...
0
votes
2answers
50 views
Image size increases
Using below code to upload an image.
ByteArrayOutputStream baos = new ByteArrayOutputStream();
BufferedImage img = ImageIO.read(new File("abc.tiff"));
ImageIO.write(img, "tiff", baos);
img.flush();
...
1
vote
2answers
67 views
Access pixels in a 16-bit TIFF
I have imported a greyscale 16-bit image. I have it bot as a BitmapSource and an Image (of Controls namespace). How can i access the individual pixels? Is the CopyPixels i have read about the only or ...
0
votes
0answers
30 views
Creating tiff 16 bit images and jpg thumbnails from it
I'm using magick++ to create 16 bit tiff images. They are monochromatic, so all three channels have the same values. Once the image is completed I create png or jpg thumbnails from it.
I can ...
1
vote
1answer
110 views
Is there any way to create multipage TIFF file with OJPEG (TIFFTAG_COMPRESSION = 6) compression using .NET?
I need to create multipage TIFF file with OJPEG(Old-style JPEG) compression from single page tiffs with the same compression scheme.
I understand that this type of compression is not widely used ...
2
votes
1answer
373 views
TIFF with JPEG-compression much larger than original JPEG
I am trying to convert JPEGs to TIFFs with JPEG-compression using FreeImage.Net and C#. This works fine, however, for low-quality JPGES the TIFF-files are a lot larger than the original. I assume the ...
0
votes
0answers
103 views
can't compile LibTiff C files in Qt C++ creator.
I'm trying to use LibTiff, a library to read tiff files. I tried importing the library, but it will not compile. I think it is because the library is in C and I am using a C++ compiler. Does anyone ...
0
votes
2answers
269 views
How to display multiple .tif in C#?
Is there any simple way to open and display multipage .tif files? I want to write a simple winForm application to open multiple page .tif file and scrolling around these pages? I want to add next and ...
0
votes
1answer
107 views
Remove page breaks in multi-page tif to make one long page
I have some tif files with multiple pages that I would like to convert to a single long page. i.e. a file including two pages that are each 8.5x11 would be converted to a resulting file of size ...
1
vote
1answer
213 views
JAI: How to convert 4-band 32-bits CMYK image into PNG?
I'm trying to convert a image into PNG format, the data I have is a 4-band 32-bits TIFF-like image compressed by LZW. By using Java2D and JAI now I have data uncompressed to represent colors in CMYK ...
1
vote
2answers
189 views
Cleanest, most efficient technique for rotating tiff images in Java?
I am copying tiff image files from one directory to another, and need to rotate them 90 degrees clockwise to correct their page orientation. The images are technical drawings, and are already of ...
0
votes
1answer
151 views
I need to convert a colored image to a bilevel version
In java I need to convert an incoming file in formats of jpeg, gif or png to a bilevel version for further conversion to a CCIT compressed TIF file. I am able to get the tif file out, but not with ...
0
votes
1answer
252 views
Reading TIFF files
I need to read and interpret a binary file containing a TIFF image. I know there exist readers for doing this but I want to go the hard way. I found the TIFF format description and need to parse the ...
1
vote
1answer
241 views
Tiff annotations
Where can i find Tiff annotations (Wang/Kodak) format specs? Need to parse some of them and put to text file. Wasted many hours googling with no result.
What SDKs for .NET can operate with that ...
0
votes
1answer
221 views
Fast reading the image header
Need to merge tons of various images into tiff file. The original images can have different encoding, resolution, color depth etc. If i parse them into bitmaps (img = Bitmap.FromStream()) before ...
0
votes
3answers
446 views
Trying to create Tif from PDF. Getting bad image
I am trying to create tif image from pdf file, using Itextsharp and Bitmiracle.
First I am trying to get the byte details of each page of pdf file using iTextsharp.
string bpp = ...
0
votes
1answer
276 views
C/C++ LIBTIFF: Need to read pixel location of white and black pixels from BW TIFF files
*EDIT, haha, got the library's name wrong, changed to LIBTIFF:
I am fairly new to image processing using Visual C++, I am in search of a way that reads black and white TIFF files and writes the image ...
0
votes
0answers
598 views
Compress image in tiff viewer
I have created Tiff file viewer for my web application and it's working great. But the problem is there are some big images (4000 X 2000 - 5+ MB) which I need to display in it's original size.
Is it ...
0
votes
1answer
185 views
Blank TIF image when using MATLAB TIFF class
*strong text*I am trying to save a multi-page TIF file using the MATLAB TIFF class in 2012a by following the example in the documentation. My usage differs in that I am writing a 32-bit grayscale ...
0
votes
1answer
238 views
Imagemagick : unknown field with tag 37724
to convert TIF file on JPG file, i'm using ImageMagick.
But on some files, I have the following error :
unknown field with tag 37724 (0x935c) encountered. `TIFFReadDirectory' @ ...
2
votes
1answer
278 views
Is there a way to set specific compression scheme when saving tiff file in opencv?
I'm using opencv to crop tif files, everthing is fine, except for saving image to a file - opencv always uses LZW compression, but i don't need compression on resulting files, i do appreciate ...
0
votes
0answers
162 views
Mysterious 64 bytes in CCITT Group 4 Fax image
I've extracted some tiff files from an archive. Most of the extracted tiff images are OK, but some are not. After taking a deep look at the the BAD part, I found that the BAD image's first 64 bytes ...
1
vote
2answers
565 views
Convert pdf file to single image file? (page on top of page)
I was wondering if anyone knew a good way to convert a multi-page PDF file to a long image file, page on top of page. All converters I can find just give you multiple images, each one page of the PDF. ...
1
vote
0answers
205 views
Detecting/Debugging/Viewing Tiff/BigTiff files which are probably broken
I have received a BigTiff file with scientific data which can't be read properly with ImageJ/Fiji. There seems to be a problem with LibTiff and the StripOffsets tag.
The only options I found are ...
12
votes
3answers
1k 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 ...
0
votes
2answers
269 views
32bit TIFF to another format in Python
I need to convert a 32 bit TIFF file (or the corresponding int32 array) to another format that Tkinter can display (like gif fe)
How do I do that? Converting the array to int16 or so completely blurs ...
2
votes
1answer
812 views
Getting the pixel value of a TIFF image in Java
The ImageIO package doesn't work with .tif images and I cannot create a BufferedImage (Class I'm more familiar with) from a .tif file.
How do I easily get the pixel value of a TIFF image in Java? How ...
1
vote
2answers
2k views
Merging two tiff image using c#.net
In my scenario i have two tiff image in different location say
c:/temp/img1.tiff and x:/temp/img2.tiff.
I need to merge these images as a single image programatically
suggest some ideas/codes.
...
4
votes
1answer
551 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 ...
1
vote
2answers
187 views
Are there tools to dissect a pdf or tiff by coordinates?
I am attempting to programmatically "chop up" a pdf or tiff image into several smaller regions for use on mobile devices (android). The layout of the original document will always be the same, so ...
1
vote
1answer
532 views
Automatic cropping of pictures
I have many pictures that are made of an object with black background. I've created them with Matlab, and they all have a white "extra" surrounding the picture. I want to be able to automatically crop ...
0
votes
1answer
344 views
Convert JPEG-In-Tiff to normal TIff
I have a directory structure containing 300 gigs worth of Tiff Images. Some are encoded as Jpeg-in-Tiff, others as "Group 4 fax encoding". I need to change the format of all to the later without ...
1
vote
1answer
594 views
Open source package for reading BigTIFF format
I need a free program or library for cropping a huge Geo TIFF file. It is in BigTIFF format. libtiff doesn't support the format.
Linux or Windows OS.
0
votes
2answers
2k views
Javascript lossless image compression
I am looking for a way to encoding a bmp image as a tiff or some other standard, compressed but lossless format in a browser (javascript). I guess if worst comes to worst I can write a library myself ...
1
vote
1answer
73 views
Image format for displaying document pages
I was wondering what image format would be best suited to save document pages. (document pages are mainly text with few images). I know that png, jpeg are bitmap formats and hence they will have ...
1
vote
2answers
179 views
What is the minimum memory requirement for splitting a TIFF file to multiple TIFF files?
I have a query that what is the minimum memory requirement for splitting the tiff file to multiple tiff files. Is it running less than 2GB memory or not.
Have you any suggestion. Please reply its ...
2
votes
3answers
1k views
Fast TIFF image conversion to show in web-client
For preview of scanned TIFF-document currently I use the following:
Bitmap bmp = new Bitmap(@"document.tif");
var ms = new MemoryStream();
bmp.Save(ms, ImageFormat.Png);
var bmpBytes = ...
0
votes
1answer
1k views
How do I retrieve 16 bit pixel data from a tiff in Java?
I'm writing a program that will do image processing on a 16 bit tiff image (5 bit red, 6 bit green, 5 bit blue) but unfortunately the code I've written to do so treats the image data as 8 bit.
To ...
1
vote
3answers
3k views
Set DPI value to Tiff Image in C#
I'm trying to set dpi value of a TIFF Image in C# through code but somehow the values are not persisted after saving the Image.
using (var image = new Bitmap(@"c:\newimage.tif"))
{
uint[] ...
0
votes
2answers
509 views
Is it possible to add layers to .tiff images with .NET?
Are there any .NET libraries etc. which allow adding layers (with text) to .tiff images?
Something like annotations, so that it would be possible to separate them from image afterwards.
I tried ...
1
vote
1answer
140 views
Computer Vision Website Image Slideshow help
I'm making an online display of the output of a computer vision algorithm. After running the algorithm I am left with a folder of about 1000 16 bit .tiff files. I need to put those on the website in ...
0
votes
0answers
822 views
Is their an optimal config/format for a TIFF when using Tesseract or other OCR?
I'm having a bizarre problem with Tesseract. I have a name, "Janice" that is in a 200x40 pixel tiff, that Tesseract interprets as a blank. I'm running hundreds of names through Tesseract and they are ...
0
votes
3answers
2k views
convert 24Bit per pixel to 8 bit tiff
i want to convert a 24 bit per pixcel(Rgb) int 8 bit per pixel tiff image is there any code to convert please share or tell me the algo in c sharp
1
vote
2answers
2k views
How to create a TIFF file?
How to create a TIFF file in PHP?
I want create a TIFF file and fax it.
I know how to fax it but I don`t know how to create a TIFF file.
0
votes
1answer
818 views
Combining (and converting) TIFF separations into 1 bitmap in C#
is there a simple way to take a number of 1-bit TIFF files (say, 4 for CMYK) and convert it into one contone RGB bitmap?
This problem has me stumped..
Thanks..
3
votes
2answers
1k 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 ...
2
votes
2answers
536 views
Library for writing XMP to a multipage TIFF
Can you recommend a library that lets me add XMP data to a TIFF file? Preferably a library that can be used with Java.
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 ...