Hi,
I was wondering if anyone can help me figure this problem out. Currently I am loading a 1280x1920 png image:
local image01 = display.newImage( “Image01.png”)
The image shows up huge and zoomed in at one location. I had thought that auto scaling would take care of this. Am I wrong? Any help would be greatly appreciated.
I then resized the image down to the “magic size” of 380x570. I loaded better, but the top portion of the image is now cut =/. Below is my config file:
application = {
content = {
width = 320,
height = 480,
scale = “letterBox”,
fps = 30,
xAlign = “center”,
yAlign = “top”
--[[
imageSuffix = {
["@2x"] = 2,
}
--]]
},