I’m new to Corona, so I’m terribly sorry if this is a stupid question
I’m writing a module for loading a certain type of bitmap fonts. The image file for a font of this type is a sprite sheet with a fixed number of columns and rows (16x14). So my question is, if it’s possible to generate a corona sprite sheet, with graphics.newImageSheet(), where the size of the cells (“width” and “height” in the options table) is unknown but the number of columns and rows are known? Or do I have to load the image first just to get its width and height and divide those with the known number of columns and rows and then reload it as a sprite sheet?