quick cocos 截屏并保存

调用cc.RenderTexture 即可。

   
   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
--需要截的屏幕大小 local render_texture = cc.RenderTexture:create(640,1136) --开始截屏 render_texture:begin() --截self.node_container包含的内容 self.node_container:visit() --关闭 render_texture:endToLua() --调用 local photo_texture = render_texture:getSprite():getTexture() local sprite_photo = cc.Sprite:createWithTexture(photo_texture) --截屏后的sprite_photo为原始图片沿y轴翻转后的样子。若需要原图,调用如下函数. sprite_photo:flipY() local result = render_texture:saveToFile("share.png",cc.IMAGE_FORMAT_PNG) -- saveToFile函数会默认添加根路径。 if not result then print("save file Failed") end

注:若需要让某些图片强制渲染,调用sprite:visit()方法

    
    
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    //C++对应的RenderTexture类的saveToFile方法 bool RenderTexture::saveToFile(const std::string& fileName,Image::Format format,bool isRGBA) { CCASSERT(format == Image::Format::JPG || format ::PNG,"the image can only be saved as JPG or PNG format"); if (isRGBA && format ::JPG) CCLOG("RGBA is not supported for JPG format"); //保存图片文件的路径 std::string fullpath = FileUtils::getInstance()->getWritablePath() + fileName; //初始化将纹理保存到文件自定义渲染指令 _saveToFileCommand.init(_globalZOrder); //设置自定义渲染指令的回调函数 _saveToFileCommand.func = CC_CALLBACK_0(RenderTexture::onSaveToFile,this,fullpath,isRGBA); Director->getRenderer()->addCommand(&_saveToFileCommand); return true; }

    相关文章

    操作步骤 1、创建cocos2d-x工程 2、新建 Scene1.cpp Scene1.h Scene1.h代码 #ifndef __SCENE1_H__#defi...
    开发环境:OS(WINDOWS 8.1 X64 企业版) cocos2d-x 2.2.1 vs2010 想给vs安装上cocos的模版,执行Install...
    把创建项目做成一个批处理,当创建项目时可以省时省力很多。 操作步骤 1、在 E:cocos2d-x-2.2.1toolspr...
    https://www.cnblogs.com/JiaoQing/p/3906780.html 四个响应函数 1 EventListenerPhysicsContact* evC...
    转载于 http://www.cnblogs.com/kenkofox/p/3926797.html 熟悉js的dom事件或者flash事件的,基本都能立...
    ScrollView(滚动容器)加载大量item时会导致游戏界面的卡顿,严重时整个界面会出现卡死的情况。最近项...