Questions tagged [jai]

The Java Advanced Imaging provides powerful collection of methods for image processing and image analysis for Java.

The Java Advanced Imaging API (JAI) provides a set of object-oriented interfaces that supports a simple, high-level programming model which allows images to be manipulated easily in Java applications and applets. JAI goes beyond the functionality of traditional imaging APIs to provide a high-performance, platform- independent, extensible image processing framework.

See Also - Java Advanced Imaging

310 questions
0
votes
3 answers

Uncompress a TIFF file without going through BufferedImage

I am receiving large size CCITT Group 4 compressed TIFF files that need to be written elsewhere as uncompressed TIFF files. I am using the jai_imageio TIFF reader and writer to do that and it works well as long as the product _width * height_ of the…
Gert
  • 220
  • 1
  • 3
  • 13
0
votes
1 answer

Strange top-margin in JPanel with added Image in JLabel

I add some images to a JPanel. Therefore, I add a single image to a JLabel as an ImageIcon and add this to the main JPanel. Although I set the bounds (setBounds) to the image-size, there is a margin of a few pixel on top of the image shown…
didhavn
  • 47
  • 2
  • 7
0
votes
1 answer

Java heap space error when creating TIFF image

As I am new to TIFF handling with JAI, I am trying to create an RGB TIFF image of 6000*6000 with float data. Actually the code works for 5000*5000 image but when I increase the size, I am getting a Java heap space error at line…
-1
votes
1 answer

multi-pag tif to several jpeg files (java)

Hello I was able to convert a tif file to jpeg with the following code that I got from https://stackoverflow.com/questions/15429011/how-to-convert-tiff-to-jpeg-png-in-java#= String inPath = "./tifTest/113873996.002.tif"; String otPath =…
Christian Salvador
  • 311
  • 1
  • 4
  • 12
-1
votes
1 answer

JAI javadoc for eclipse

please I need a link for downloading the javadoc for the JAI API(as a zip file ) in order to install it on ECLIPSE Kepler Service Release 1 thanks
Sa mid
  • 29
  • 7
-1
votes
1 answer

How to normalize image to interval 0 to 1

Possible Duplicate: How do I normalize an image? I am working on the implementation of active contours with gradient vector flow. I need to normalize the input image in the interval from 0 to 1 Unfortunately, I do not know how to do this in JAVA…
Samot
  • 47
  • 6
-2
votes
1 answer

Convert tif image with transparent background causes, black background Java Jai

I trying convert an image in tiff format with background transparent, to jpeg to resize to 200x200 or 1200x1200, but when convert, the background turn to black, i want keep the background transparent or white after conversion My code is…
Mister B
  • 123
  • 2
  • 15
-2
votes
1 answer

I need an image file that verifies this test "if (input.getColorModel() instanceof IndexColorModel)"

In order to see the impact of the code below i need an image file which verify the if test; and can you give me the different IndexColorModel of images. System.out.println(input.getColorModel()); System.out.println("vvvvvv"); if…
Sa mid
  • 29
  • 7
-3
votes
1 answer

To view Tiff image on web and do image processing on it using java applet

I want to browse and display big Tiff image on web using HTML and Javascript and do image processing on it using java applet. All the image loading and processing should be on client machine. For viewing of image I want to use HTML and…
-3
votes
1 answer

What is the license for the Java Imaging API?

What is the license for the Java Imaging API? I'm using one of their classes in a project and I have been trying googling around for a specific license without any success.
Johan S
  • 3,531
  • 6
  • 35
  • 63
1 2 3
20
21