Help: My image doesn't show?

Hello guys,

I have problem regarding my image, the simulator does not show it, but just a white background. Am I missing something? the dimensions of my image is 1024x1024. I read the documentations about images, the maximum dimenstions for images is 2024x2024.

Thank in advance,

Jam

Code???

Thank for replying Segaboy.

I’m sorry if I didn’t post it, here goes

local \_W = display.viewableContentWidth local \_H = display.viewableContentHeight local widget = require("widget") local bigGroup = display.newGroup() local background = display.newImageRect("map.png",\_W,\_H) bigGroup:insert(background)

the map dimension is 1024x1024. Even if I change the width and height into 100 nothing happens, just a plain white background.

You have H instead of _H in display.newImageRect.

I forget to put _ my bad,

I kept on changing the width and height hoping that the image will be shown, but it doesn’t only a white background,

already solved it. I reduced the image size to 640x640. Don’t know why corona can’t display 1024x1024 image

It should be able to handle a 1024x1024 image with no problems.  Something else might have been the cause.

Code???

Thank for replying Segaboy.

I’m sorry if I didn’t post it, here goes

local \_W = display.viewableContentWidth local \_H = display.viewableContentHeight local widget = require("widget") local bigGroup = display.newGroup() local background = display.newImageRect("map.png",\_W,\_H) bigGroup:insert(background)

the map dimension is 1024x1024. Even if I change the width and height into 100 nothing happens, just a plain white background.

You have H instead of _H in display.newImageRect.

I forget to put _ my bad,

I kept on changing the width and height hoping that the image will be shown, but it doesn’t only a white background,

already solved it. I reduced the image size to 640x640. Don’t know why corona can’t display 1024x1024 image

It should be able to handle a 1024x1024 image with no problems.  Something else might have been the cause.