Does anyone have a good list of imageSuffix entries for iOS?

Does anyone have a good list of image suffix entries to accurately target the different device sizes for dynamic image scaling? I’m predominantly concerned with iOS, but of course, Android settings would be nice to have, too.

I’m asking because while this page has a very complete list of ‘Default.png’ loading image entries for the build.settings file:

http://docs.coronalabs.com/guide/distribution/buildSettings/index.html#launchimage

This page does NOT have a complete list of imageSuffixes and their related device screen sizes:

http://docs.coronalabs.com/guide/basics/configSettings/index.html

I will continue my research and post what I find.

Hi Matt,

We can’t realistically provide a list of imageSuffix values because everybody’s content area values will vary, and thus the suffix values would never match up. The best we can do is illustrate the basic structure, and a formula to output (in the Terminal/console) the suffix value that is being used when you simulate different devices:

[lua]

print( display.pixelWidth / display.actualContentWidth )

[/lua]

Best regards,

Brent

Thanks Brent.

More coffee!

Hi Matt,

We can’t realistically provide a list of imageSuffix values because everybody’s content area values will vary, and thus the suffix values would never match up. The best we can do is illustrate the basic structure, and a formula to output (in the Terminal/console) the suffix value that is being used when you simulate different devices:

[lua]

print( display.pixelWidth / display.actualContentWidth )

[/lua]

Best regards,

Brent

Thanks Brent.

More coffee!