Hi.
I know from the guidelines that it is recommended to have multiple versions of each image to allow corona to select the most appropriate image dynamically to prevent blurring and conserve texture memory.
What the guidelines did NOT mentions is that how large/small a given image should be between each scale factor.
Below is what my config.lua looks like:
application = { content = { width = 320, height = 568, scale = "zoomEven", xAlign = "center", yAlign = "center", imageSuffix = { ["@2x"] = 2.0, ["@3x"] = 3.0, ["@4x"] = 4.0 }, } }
Is there a general ratio of image sizes that should be used between scale factors?
Or should that ratio reflect that of the scale factors themselves? (in this case, 66% and 75% respectively)
Furthermore, should the dimensions of the images be adjust to reflect these ratios (e.g. 1024x1024 becomes 768x768) or should the file size be adjusted? (e.g. a 128kb image becomes 96kb)
Thanks in advance.
KC