Corona has a method for creating images that will be displayed dynamically based on device resolution:

img = display.newImageRect("image.png", 100, 100)

Great, but what if all your images are in a sprite sheet, which is recommended for performance? Then you have to do something like this to display the image:

local data = require("sheet1")
local tileSheet = sprite.newSpriteSheetFromData("sheet1.png", data.getSpriteSheetData())
local tileSet = sprite.newSpriteSet(tileSheet, 1, 3)
local img = sprite.newSprite(tileSet)
img.currentFrame = 1

How do you create dynamically sized images from sprite sheets?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 1 down vote accepted

use display.contentScaleX http://developer.anscamobile.com/reference/index/displaycontentscalex

here's how http://developer.anscamobile.com/forum/2010/12/08/dynamic-retina-spritesheets-heres-how

link|improve this answer
Thanks. Discovered the SpriteGrabber there too. Of course once I go to all the trouble of doing it this way Ansca will come out with an API to handle all this... – sol Apr 15 '11 at 1:06
Those sneaky bastards, what with the making new features. – jhocking Apr 15 '11 at 2:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.