Hello guys,
I’m having an issue trying to save a screenshot of my game using the ‘letterbox’ scaling option.
It seems that the resulting image only save the display content size (instead of display actual content size).
Basically cropping top/bottom parts on tall devices (galaxy S5) and left/right parts on large devices (ipad).
I’m using:
[lua]
display.save( display.getCurrentStage(), { filename=“test.png”, baseDir=system.DocumentsDirectory,
captureOffscreenArea=true, backgroundColor={0} } )
[/lua]
Does anybody else has this problem too ?
I tried setting ‘captureOffscreenArea’ to false or true but doesn’t seem to change anything.
I don’t know if that is the intended way ‘display.save’ is supposed to work.
If so, how can I save the whole screen ?
Thanks in advance for your lights on this subject,
GoG