tags:

views:

42

answers:

1

I am trying to encode (write) jpeg 2000 in Java. I am reading a '.bmp' image and try to write '.jp2' image. I am using:

javax.imageio.ImageIO.write(img1, "jpeg 2000", file1);

I do not receive any error, but the size of the produced image is zero. Can anybody help me please?

Thanks a lot in advance.

A: 

The only problem was that when I was installing JAI_ImageIO, I should have selected "custome installation" and checked everything to be installed. Thanks everyone.

Shadi