[Resolved] what's wrong with this image - showing up as black - no errors in terminal

what’s wrong with this image - showing up as black - no errors in terminal

main.lua

local bkgd = display.newImageRect(“Clouds.jpg”,0,0)

I’ve tried to set it in photoshop to:
* RGB color
* went Image/RemoveProfile

Image is here: http://s15.postimage.org/e2ezowyob/Clouds.jpg [import]uid: 140210 topic_id: 24781 reply_id: 324781[/import]

think I found the problem

the image I now have does seem to work, however during the process of changing the image I had gone from using newImage to newImageRect

I had also tried removing the build.settings and the config.lua.

So with:
* newImage => Works
* newImageRect => still a problem - hence I assume now I need to look more closely then at build.settings and the config.lua [import]uid: 140210 topic_id: 24781 reply_id: 100450[/import]

To use newImageRect you have to specify the height and width of the actual image. Using 0,0 will not work. If you are not planning on using dynamic image scaling, there is no need to use it. You can stick with newImage. [import]uid: 56820 topic_id: 24781 reply_id: 100459[/import]

tks - got it [import]uid: 140210 topic_id: 24781 reply_id: 100460[/import]