码迷,mamicode.com
首页 > 其他好文 > 详细

cocos2d-x 屏幕截图

时间:2014-10-14 19:15:19      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   for   sp   div   

void A::screenShoot()
{
    //定义一个屏幕大小的渲染纹理
    CCRenderTexture* renderTexture = CCRenderTexture::create(m_visibleSize.width * .5, m_visibleSize.height * .5, CCTexture2DPixelFormat::kTexture2DPixelFormat_RGBA8888);

    CCScene * curScene = CCDirector::sharedDirector()->getRunningScene();
    CCPoint ancPos = curScene->getAnchorPoint();

    //渲染纹理开始捕捉
    renderTexture->begin();

    // 缩小屏幕截屏区域
    curScene->setScale(.5);
    curScene->setAnchorPoint(CCPoint(0, 0));

    //绘制当前场景
    curScene->visit();

    //结束
    renderTexture->end();

    //保存png
    renderTexture->saveToFile("screenshoot.png", tCCImageFormat::kCCImageFormatPNG);

    // 恢复屏幕尺寸
    curScene->setScale(1);
    curScene->setAnchorPoint(ancPos);
    //CC_SAFE_DELETE(curScene);
}

 

转自:http://www.cocos2dev.com/?p=522

cocos2d-x 屏幕截图

标签:style   blog   http   color   os   ar   for   sp   div   

原文地址:http://www.cnblogs.com/C-Plus-Plus/p/4024778.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!