Tagged Questions

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

learn more… | top users | synonyms

8
votes
2answers
2k views

JAI and ImageIO for 64 bit Windows

i searched JAI and ImageIO library for 64 bit windows, but i didn't find any version of these. Last 64 bit win vesion request on Java Bug tracking system 6-7 years ago. I think, jai's developers will ...
7
votes
5answers
5k views

Using Java Advanced Imaging with Maven

The JAI setup is quite tedious, involving multiple jars and environment variables. It would aid the project's portability quite a lot if I could add it as a regular Maven dependency. The POM snippet ...
6
votes
1answer
160 views

Is there a native implementation version of Java Advanced imaging api?

Is there a native implementation of the java advanced imaging api? We currently are using the jar files 1-jai_core-1.1.3.jar and 2-jai_codec-1.1.3.jar I have heard there is an implementation of ...
6
votes
7answers
3k views

Check if a file is an image

I am using JAI and create a file with: PlanarImage img = JAI.create("fileload", myFilename); I check before that line if the file exists. But how could I check if the file is a .bmp or a .tiff or ...
4
votes
1answer
1k views

Java Advanced Imaging - where to get latest binary build?

I am searching for the latest official binary builds of Java Advanced Imaging (at least the platform independent Java-only build). The official project web page is on ...
3
votes
1answer
71 views

How can I write 16 bit grayscale image as jpeg?

I have 16-bit per pixel grayscale BufferedImage created from an array of shorts: private BufferedImage get16bitImage(short[] pixels) { ColorModel colorModel = new ComponentColorModel( ...
3
votes
1answer
536 views

Convert uploaded images from various formats to JPEG

I am developing a website that allows the user to upload images. I would like to be able to accept BMP, GIF, JPEG and PNG (and maybe one or two others like TIFF) formats. I am using the Apache Commons ...
3
votes
6answers
810 views

slicing up a very big jpg map image , 49000* 34300 pixel

hi i want to write a mapviewer, i must to work small tile of big map image file and there is need to tiling the big image, the problem now is to tiling big image to small tiles (250 * 250 pixel or ...
3
votes
3answers
1k views

Converting PNG into JPEG

I'm having problems converting a simple PNG into a JPEG format. I'm using the following code: ... File png = new File(filePath); try { SeekableStream s = new FileSeekableStream(png); ...
3
votes
2answers
701 views

Java / JAI - save an image gray-scaled

I try to save the tiff instead of coloure gray-scaled. How could I do this? (JAI must be used, because it is a tiff!) Thanks a lot in advance & Best Regards.
2
votes
5answers
103 views

Faster alternative to ColorConvertOp

I have a method converting BufferedImages who's type is TYPE_CUSTOM to TYPE_INT_RGB. I am using the following code, however I would really like to find a faster way of doing this. BufferedImage ...
2
votes
1answer
89 views

How do i apply a PerspectiveTransform to graphics object or image?

I'm trying to draw a square image into a trapezoid using the Java Advanced Imaging API; However after creating a PerspectiveTransform I am unsure how I would go about applying it to a graphics object ...
2
votes
2answers
737 views

Pure Java alternative to JAI ImageIO for detecting CMYK images

first I'd like to explain the situation/requirements that lead to the question: In our web application we can't support CMYK images (JPEG) since IE 8 and below can't display them. Thus we need to ...
2
votes
2answers
77 views

Help on adding plug-in to Java ImageWriter

I am trying to save a BufferedImage as a PNM file. I already installed the JAI (Java Advanced Imaging), and have the PNMWriter plug-in imported. However, I don't know how to add it to my ImageWriter ...
2
votes
2answers
623 views

Write swing component to large TIFF image using JAI

I have a large swing component to write to TIFF. The component is too large to load the TIFF in memory, so I either need to make a big BufferedImage which is backed by a disk-based WritableRaster (as ...
2
votes
1answer
265 views

DPI changes in JAI.create… Why?

In the following code my source image has dpi of 600 but the result image will have dpi of 96, why? RenderedOp source = JAI.create("fileload", "img/1.jpg"); FileOutputStream outputStream = new ...
2
votes
3answers
250 views

RMagick-like image processing library for Java

Is there any Java image processing library that is as easy to use as and provides the set of functionalities provided by RMagick? (I have seen JMagick and unfortunately that is not the kind of library ...
2
votes
3answers
591 views

Resizing a RenderedImage

I'm using a RenderedImage to display tiffs in a DisplayJAI in my app. Somebody know how to resize an instance of RenderedImage??
2
votes
1answer
154 views

performance concerns in using Java Advanced Imaging APIs

In our project we use JAI for showing parts of an image, rotating an image and basic zooming in an applet. We now observe that the applet takes a lot of time to load - around 20 seconds for the first ...
2
votes
2answers
486 views

Convert a bitmap image to an uncompressed tif image in Java

I'm trying to convert a bitmap image into an uncompressed tif file for use with the Tesseract OCR engine. I can use this method to produce a compressed tif file... final BufferedImage bmp = ...
2
votes
2answers
289 views

JAI: Reading in 12 bit JPEG files

I'm brand new to Java Advanced Imaging, and the first stumbling block I've reached is the ability to read in a 12 bit, single band, greyscale JPEG file. I've seen references to it being possible with ...
2
votes
1answer
591 views

Using JAI to rotate a grey scale image increases contrast

I am trying to use JAI to perform a rotate task on an image. I can get this working no problem. However, there is severe loss of midtones in the image. The image can be rotated in photoshop without ...
2
votes
1answer
1k views

Fast Perspective transform in Java Advanced Imaging API

For the needs of my program I have created a facility to distort an image and place it on a map (my program is a map based program). I wrote my own mechanism for placing and distorting the image ...
2
votes
2answers
227 views

JNI problem on OSX

I'm running into problems using AWT classes on OSX (10.5.8) with Java 6 (1.6.0_17 JVM: 14.3-b01-101). Trying to load java.awt.Dimension the code just freezes, this happens in Eclipse or from the ...
1
vote
1answer
35 views

Android Image editing/warping with Java?

Hopefully not making this too vague... but I have been dealing with a lot of image scaling and manipulating with an app I'm working on and wanted to know: Is it possible/feasible to warp images using ...
1
vote
1answer
277 views

Convert RGB JPEG to CMYK JPEG using ColorConverterOp Java

I am attempting to convert a jpeg image in rgb to CMYK colorspace. The only problem is my final output is always a black image. But interesting enough the preview application in MAC shows the image ...
1
vote
1answer
48 views

Using JAI, how do I add a new color to the palette?

I'm using JAI to add a "border" to an image. Eg ParameterBlock pb = new ParameterBlock(); pb.addSource(r); pb.add(leftPad); pb.add(rightPad); pb.add(topPad); pb.add(bottomPad); pb.add(new ...
1
vote
1answer
102 views

Error with setCompressionType

Is there someone that can help to correct this code? I'm working with JAI and I'm trying to compress JPG file to Losse-less here's my code `ImageWriter writer= (JPEGImageWriter) ...
1
vote
0answers
19 views

Get the total width of a string rendered with an arbitrary .ttf font in Java Graphics 2

Currently we attempt to get the width of a string rendered with an arbitrary font. BufferedImage img = new BufferedImage(10, 10, BufferedImage.TRANSLUCENT); img.createGraphics(); Graphics2D g ...
1
vote
1answer
83 views

creating a mosaic with jai

I am trying to create a concatenation of multiple images into one, but have been having problems. To isolate this I have created the following POC which I am trying to solution in order that I ...
1
vote
1answer
129 views

Java JAI - creating 1 BIG jpg image from many smaller ones

Before you all say 'thats already on here somewhere...' :-) PLEASE let me say I have looked and not found a simple example of using JAI to tile multiple jpg's and save to disk without java heap errors ...
1
vote
1answer
66 views

JAI Image Adjustment Bottlenecks

I'm using the JAI library to do adjustments on a series of images, each about 1300x1000 in size. I adjust pixel intensities with "Rescale" and add text and lines with the Graphics2D object from the ...
1
vote
1answer
239 views

JPEG in TIFF encoding

I do this steps: TIFFEncodeParam tep = new TIFFEncodeParam(); tep.setCompression(TIFFEncodeParam.COMPRESSION_JPEG_TTN2); BufferedImage buff = new BufferedImage(newimage.getWidth(null), ...
1
vote
1answer
119 views

export images to JPEG-XR with java?

Curious to try out exporting BufferedImages to JPEG-XR, but cannot find an export tool to add to a java workflow. Preferably there is a a JAI plugin out there somewhere... I googled about to no ...
1
vote
1answer
110 views

Getting Image task to work in Ant

I'm trying to utilize the Image task in Ant, which requires Java Advanced Imaging. The .jar file seems to be in the Ant library, but when I try to scale an image, it gives me the following error: ...
1
vote
0answers
298 views

JAI tiff image conversion producing bigger file size on windows 7

Trying to compress the image using JAI with TIFF format. It works fine on Windows XP, But it produces 10 times bigger size file on Windows 7 compared to Windows XP. Using JAI 1.1 and JRE 1.6_0_16 ...
1
vote
1answer
1k views

Public download for javax.media.jai classes?

This is a pretty simple question... I've been looking for where you can download the javax.media.jai.* libraries. I found the jai imageio libraries... but all the rest of the jai stuff I find is ...
1
vote
1answer
296 views

Using ImageIO.read with a redirecting URL

I'm trying to read an image from the net using ImageIO: URL url = new URL(location); bi = ImageIO.read(url); When location is a URL that ends with the actual image (e.g. http://www.lol.net/1.jpg), ...
1
vote
2answers
1k views

Scaling images with Java JAI

I have to scale an image with Java JAI. At the time now, I use the following code: private static RenderedOp scale(RenderedOp image, float scale) { ParameterBlock scaleParams = new ...
1
vote
2answers
2k views

java.awt.image.BufferedImage 24-bit RGB to 8-bit Grayscale conversion using custom ColorSpace

I want to do a simple color to grayscale conversion using java.awt.image.BufferedImage. I'm a beginner in the field of image processing, so please forgive if I confused something. My input image is ...
1
vote
1answer
511 views

Sanselan vs Java-Image-io

Which better of these two libraries Sanselan or Java Advanced Imaging API?
1
vote
1answer
325 views

JAI FileLoad/FileStore Operations vs JAI ImageRead/ImageWrite Operations. Differences?

What are the differences between JAI's FileLoad/FileStore operations and its ImageRead/ImageWrite operations? Is one set better than the other in any way? Which ones should be used as a default?
1
vote
2answers
354 views

JAI ImageIO-core codecLib source

JAI ImageIO-core comes with a set of native codecs. The codecs come bundled in a set of .so and .dll files. Mainly clib_jiio.dll clib_jiio_sse2.dll clib_jiio_util.dll. I was able to find the ...
1
vote
1answer
369 views

Should I use JAI?

I would like develop program with a lot of image processing. I would like to use Java, and JAI, but it seems to me, that Jai is old and no longer evolve? ...
1
vote
0answers
396 views

How to display a stitch of TIFF images, allowing zooming and moving

I want to write a simple Java application to display a portion of large stitched tiles of TIFF images. I want to be able to zoom and move around. Is using JAI the best current way to go? The ...
1
vote
1answer
3k views

How to combine two or many tiff image files in to one multipage tiff image in JAVA

I have 5 single page tiff images. I want to combine all these 5 tiff images in to one multipage tiff image. I am using Java Advanced Imaging API. I have read the JAI API documentation and tutorials ...
1
vote
1answer
2k views

Problems importing JAI in Eclipse

I'm trying to use the following import in Eclipse running on Mac OS X 10.6: import javax.media.jai.JAI; Unfortunately, this doesn't work, instead I get the following message: "Access restriction: ...
1
vote
1answer
181 views

What's the best way to fill or paint around an image in Java?

I have a set of images that I'm combining into a single image mosaic using JAI's MosaicDescriptor. Most of the images are the same size, but some are smaller. I'd like to fill in the missing space ...
1
vote
4answers
509 views

Java casting problem - Classloader issues

Here is the simplified version of the problem: SomeClass c = (SomeClass) obj.getSomeClassParent() not always but it happens sometimes to trigger exception org.somepackage.SomeClass can't be ...
1
vote
2answers
760 views

Round corners on images using Java and JAI

We're using JAI (https://jai-imageio.dev.java.net/) to scale and crop images in Java. We would like to create round corners on our images. How do we do that? The images are JPG and PNG. I would ...

1 2 3