Hi.
I tried this little code:
local path=system.TemporaryDirectory local fileName="1.jpg" local newFileName="1\_snap.jpg" local img=display.newImageRect(fileName, path, 320,172) img.x=display.contentWidth\*.5 img.y=display.contentHeight\*.5 local function saveWithDelay() display.save( img, { filename=newFileName, baseDir=path, isFullResolution=true} ) end timer.performWithDelay( 1000, saveWithDelay )
the new file is always bigger than the original.
i’ve 3 files:
1.jpg (320x172)
1@2X.jpg (640x344)
1@4X.jpg (1280x688)
file created:
1_snap.jpg (1365x734)
is this the normal behavior?
Best regards,
Carlos.
