Cocos2d-X截屏并保存成png


[cpp]  view plain copy
  1. RenderTexture* texture = RenderTexture::create(64, 64);  
  2.     texture->begin();  
  3.     this->visit();  
  4.     texture->end();  
  5.   
  6.     texture->saveToFile("screen.png");  

如上使用RenderTexture创建了64*64的区域。

Win32下在\build\Debug.win32 目录下可以找到保存的screen.png.

Cocos2d-X截屏并保存成png

默认从右下角开始截取。


转自:http://blog.csdn.net/liangshaoze/article/details/38062693

你可能感兴趣的:(C++,Class,cocos2d-x,cocos2d-x3.x,cocostudio)