mithilatw
mithilatw

Reputation: 908

Using BufferedImage in J2ME

Is there a way to implement BufferedImage class in a J2ME project?. I desperately need it for HSV Image Processing...!

Upvotes: 1

Views: 344

Answers (1)

theAngel
theAngel

Reputation: 38

You can't use BufferedImage in mobile projects. Implementing it would be a nightmare with all the dependencies to this class. Best thing is to try some other image class like Bitmap which is available in J2ME

Upvotes: 2

Related Questions