调整.png图像大小后的Filenotfoundexception

时间:2013-07-13 11:07:34

标签: java android image cocos2d-iphone cocos2d-android

我有一个.png图像,所以根据我的要求改变了大小,但现在在logcat中我得到filenotfound异常,即使图像在资产文件夹中,并且它之间也没有大写字母,空格。我无法弄清楚为什么会出现这个想法?

// background layer: another image
            CCSprite background = CCSprite.sprite("shipe150.png");
            // scale the image (optional)
            background.setScale(1.5f);
            // change the transform anchor point (optional)
            background.setAnchorPoint(CGPoint.make(0,0));

logcat错误

07-13 10:59:07.928: W/System.err(3017): java.io.FileNotFoundException: shipe150.png
07-13 10:59:07.928: W/System.err(3017):     at android.content.res.AssetManager.openAsset(Native Method)
07-13 10:59:07.939: W/System.err(3017):     at android.content.res.AssetManager.open(AssetManager.java:315)
07-13 10:59:07.939: W/System.err(3017):     at android.content.res.AssetManager.open(AssetManager.java:289)

0 个答案:

没有答案