Reputation: 908
Is there a way to implement BufferedImage
class in a J2ME
project?. I desperately need it for HSV Image Processing...!
Upvotes: 1
Views: 344
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