display.newImage(isFullResolution) don't work?

display.newImage( [parent,] filename [,baseDir] [,x,y] [,isFullResolution])

when i set true or false, it show same resolution on screen.

as docs say ,when i set false, it should auto scale down to fit the screen.but it didn’t.

config.lua

 width = 320, height = 480, 

main.lua

local myImage = display.newImage( "blue-37852.png",display.contentCenterX,display.contentCenterY,true )

blue-37852.png resolution is 1920X1920.

The flag is managing internal scaling. It has no visual effect on your app or how the image scales relative to your content area. It’s your responsibility to scale the image to your needs.

Rob

The flag is managing internal scaling. It has no visual effect on your app or how the image scales relative to your content area. It’s your responsibility to scale the image to your needs.

Rob