I have some images I’m trying to save after scaling them down using the following code:
local image = display.newImage("someimage.png", display.contentCenterX, display.contentCenterY) image:scale(.3,.3) display.save(image, { filename=fileName, baseDir=storeLocation })
The code works just fine on the simulator, but on my android device the images seem to still be full sized. It writes the images just fine it just doesn’t scale them. Am I missing something here?
