Well.... it's complicated.
Theoretically speaking, if your image is 1920x1440 pixels, then a little math shows us the following:
1920/1440=4/3 Which means that it's a 4:3 resolution. (We can simplify a little and call this 16:12)
1920/1200=8/5 Which means that it's a 16:10 resolution.
1920/1080=16/9 Which means that it's a 16:9 resolution.
So, going from very square to very rectangle we have:
- Code: Select all
16:12 16:10 16:9
1920/1440 1920/1200 1920/1080
So, you have a few options:
You can create your original image that is 1920/1440 pixels large and then crop it to fit the other resolutions. (This is probably the best).
You can create your original image at whatever size you want and then stretch/shrink it to fit the resolutions. (This might result in some weird looking stuff).
You can create one image that is 1920/1440 pixels large, submit it, and then if it is chosen the artwork team (probably) will randomly chop it up to fit the proper resolutions. This is like the first option, but you have no control over what parts get chopped and how the end result looks. But it is the easiest.
Also, will one of the mods please move the question and answer to
https://forums.mageia.org/en/viewtopic.php?f=11&t=1879Also, math (even simple math) is not my strong point and there could be errors there.