2

How do I convert JPEG 2000 to JPEG in Java? I have a biometric system that gets a fingerprint and and the user's ID number and the send it through the web service to verify the user. If a user has been verified I get back an Image in the form of a byte[]. Now The byte[] I get back is in JPEG 2000, I need to display it in my application, but i need to display a jpeg. I need to know How I can convert that to jpeg 2000.

Thanks.

µBio
  • 10,668
  • 6
  • 38
  • 56
crocky
  • 101
  • 1
  • 2
  • 3

1 Answers1

6

http://code.google.com/p/jj2000/

This project is a JPEG 2000 encoder/decoder written in pure Java. Its goal is to be a reference implementation of (at least) part 1 of the JPEG 2000 specification.

Andrey Agibalov
  • 7,624
  • 8
  • 66
  • 111