@Joshua Quick , please help me. I have a big problem.
I need to save an image to file from the sceen. I use [lua]display.save()[/lua]
display.contentWidth is 480
display.contentHeight is 800
[lua]local image = display.newImageRect( “my_image.jpg”, 480, 800 )
image.x = display.contentCenterX
image.y = display.contentCenterY
local group = display.newGroup()
group:insert(image)
display.save( group, “image1.jpg”, system.DocumentsDirectory )[/lua]
But it does not save a 480x800 image. The size of the saved image is 240x400.
I deleted the config.lua, so nothing content scaling.
Please tell me how to save a full size image. [import]uid: 138389 topic_id: 15661 reply_id: 117740[/import]