I had asked a question a few days ago here on how to draw some custom graphics. As I talk about it with various people they suggested not to draw my graphics by coding but use png files instead. So I would like to know what my options are and what is commonly used in the industry.
A quick explanation to my problem: I'm making a texas hold'em poker odds calculator for training mostly. I want when I click a card, a circular dialog appearing where I could select the suit and value of the card. Imagine a circle in the middle cut in 4 with the suite options and a ring around that circle with the 13 possible card values.
Options I have thought of:
- Making png for every possible combination (1 empty, 13 for card only selections, 4 for suite only selections, 52 for every possible combination of suite and value)
- Making independent png for suite and value (1 empty suite, 4 for selected suite, 1 empty value, 13 for values) and layer those.
- Make selected/deselected png for suite and value and render the text on them (1 selected suite, 1 deselected suite, 1 selected value, 1 deselected value)
Of course the 3rd option seems more appealing but is it the right way to go? What size should I make those png be, because they are going to be static I guess...