That\'s the question xD
Given an instance of a CCSprite in cocos2d in iphone, what method can I use to obtain the image width and height?
raw width: sprite.contentSize.width
sprite.contentSize.width
raw height: sprite.contentSize.height
sprite.contentSize.height
current width: sprite.contentSize.width * sprite.scaleX
sprite.contentSize.width * sprite.scaleX
current height: sprite.contentSize.height * sprite.scaleY
sprite.contentSize.height * sprite.scaleY