如何将图像缩放到屏幕大小?
我试过的:
image:scale( display.contentWidth, display.contentHeight )
您可以使用它使图像适合您的屏幕
local screen_adjustment = 1
local background = display.newImage("Objects/bg.png", true)
background.xScale = (screen_adjustment * background.contentWidth)/background.contentWidth
background.yScale = background.xScale
background.x = display.contentWidth / 2
background.y = display.contentHeight / 2
只需更改 screen_adjustment 的值以适合您的屏幕
Corona的屏幕比例是固定的,检查build.lua
您可以通过更改图像的宽度和高度来做到这一点(它会拉伸图像)
bg.width = display.contentWidth
bg.height = display.contentHeight
bg.x = display.contentWidth / 2
bg.y = display.contentHeight / 2
您也可以通过使用图像的 xScale 和 yScale 来做到这一点
注意:如果要保持图像的 1:1 比例,xScale 和 yScale 必须相同
通过这样做,您可以参考 DevfaR 的答案