vote up 0 vote down star

Hi All,

I tried this on J2ME

try {
    Image immutableThumb = Image.createImage( temp, 0, temp.length);
} catch (Exception ex) {
    System.out.println(ex);
}

I hit this error: java.lang.IllegalArgumentException:

How do I solve this?

flag
If you include some more specific information, e.g. stack trace or exception message, it might be possible to provide an answer. – Ruben Nov 7 '08 at 10:16
I think that the only way to help you is if you show us how did you get the temp array. – Honza Nov 7 '08 at 11:12

3 Answers

vote up 1 vote down

Image.createImage() throws an IllegalArgumentException if the first argument is incorrectly formatted or otherwise cannot be decoded. (I'm assuming that temp is a byte[]).

http://java.sun.com/javame/reference/apis/jsr118/javax/microedition/lcdui/Image.html#createImage(byte[],%20int,%20int)

(This URL refuses to become a hyperlink for some reason (?))

link|flag
vote up 1 vote down

It's hard to say without more details or more surrounding code, but my initial suspicion is that the file your are trying to load is in a format not supported by the device.

link|flag
vote up 0 vote down

Let us have a look at the docs: IllegalArgumentException is thrown

if imageData is incorrectly formatted or otherwise cannot be decoded

So the possible reason can be either unsupported format of the image, or truncated data. Remember, you should pass entire file to that method, including all the headers. If you have doubts about the format, you'd better choose PNG, it must be supported anyway.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.