2010-11-12 17:29:14 +08:00
|
|
|
/****************************************************************************
|
2011-03-19 14:45:51 +08:00
|
|
|
Copyright (c) 2010-2011 cocos2d-x.org
|
|
|
|
Copyright (c) 2009 Jason Booth
|
2010-11-12 17:29:14 +08:00
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2011-06-08 10:02:07 +08:00
|
|
|
#include "CCConfiguration.h"
|
2010-11-12 17:29:14 +08:00
|
|
|
#include "CCRenderTexture.h"
|
|
|
|
#include "CCDirector.h"
|
|
|
|
#include "platform/platform.h"
|
2011-03-07 17:11:57 +08:00
|
|
|
#include "CCImage.h"
|
2011-01-06 14:04:03 +08:00
|
|
|
#include "support/ccUtils.h"
|
2011-07-27 16:55:04 +08:00
|
|
|
#include "CCFileUtils.h"
|
2011-03-02 17:05:22 +08:00
|
|
|
#include "CCGL.h"
|
2010-11-12 17:29:14 +08:00
|
|
|
|
|
|
|
namespace cocos2d {
|
2010-08-18 15:15:02 +08:00
|
|
|
|
2010-12-25 15:09:42 +08:00
|
|
|
// implementation CCRenderTexture
|
|
|
|
CCRenderTexture::CCRenderTexture()
|
|
|
|
: m_pSprite(NULL)
|
|
|
|
, m_uFBO(0)
|
|
|
|
, m_nOldFBO(0)
|
|
|
|
, m_pTexture(0)
|
2011-07-05 14:51:17 +08:00
|
|
|
, m_ePixelFormat(kCCTexture2DPixelFormat_RGBA8888)
|
2010-12-25 15:09:42 +08:00
|
|
|
{
|
|
|
|
}
|
2010-08-18 15:15:02 +08:00
|
|
|
|
2010-12-25 15:09:42 +08:00
|
|
|
CCRenderTexture::~CCRenderTexture()
|
|
|
|
{
|
|
|
|
removeAllChildrenWithCleanup(true);
|
|
|
|
ccglDeleteFramebuffers(1, &m_uFBO);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCSprite * CCRenderTexture::getSprite()
|
|
|
|
{
|
|
|
|
return m_pSprite;
|
|
|
|
}
|
|
|
|
void CCRenderTexture::setSprite(CCSprite* var)
|
|
|
|
{
|
|
|
|
m_pSprite = var;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCRenderTexture * CCRenderTexture::renderTextureWithWidthAndHeight(int w, int h, CCTexture2DPixelFormat eFormat)
|
|
|
|
{
|
|
|
|
CCRenderTexture *pRet = new CCRenderTexture();
|
|
|
|
|
|
|
|
if(pRet && pRet->initWithWidthAndHeight(w, h, eFormat))
|
|
|
|
{
|
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
|
|
|
}
|
2011-03-07 17:11:57 +08:00
|
|
|
CC_SAFE_DELETE(pRet);
|
2010-12-25 15:09:42 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCRenderTexture * CCRenderTexture::renderTextureWithWidthAndHeight(int w, int h)
|
|
|
|
{
|
|
|
|
CCRenderTexture *pRet = new CCRenderTexture();
|
|
|
|
|
|
|
|
if(pRet && pRet->initWithWidthAndHeight(w, h, kCCTexture2DPixelFormat_RGBA8888))
|
2010-08-18 15:15:02 +08:00
|
|
|
{
|
2010-12-25 15:09:42 +08:00
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
2010-08-18 15:15:02 +08:00
|
|
|
}
|
2011-03-07 17:11:57 +08:00
|
|
|
CC_SAFE_DELETE(pRet)
|
2010-12-25 15:09:42 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2011-06-03 15:22:50 +08:00
|
|
|
|
2010-12-25 15:09:42 +08:00
|
|
|
bool CCRenderTexture::initWithWidthAndHeight(int w, int h, CCTexture2DPixelFormat eFormat)
|
|
|
|
{
|
2011-06-03 15:22:50 +08:00
|
|
|
// If the gles version is lower than GLES_VER_1_0,
|
|
|
|
// some extended gles functions can't be implemented, so return false directly.
|
2011-06-08 10:02:07 +08:00
|
|
|
if (CCConfiguration::sharedConfiguration()->getGlesVersion() <= GLES_VER_1_0)
|
2011-06-03 15:22:50 +08:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-12-25 15:09:42 +08:00
|
|
|
bool bRet = false;
|
|
|
|
do
|
|
|
|
{
|
2010-12-31 14:56:24 +08:00
|
|
|
w *= (int)CC_CONTENT_SCALE_FACTOR();
|
|
|
|
h *= (int)CC_CONTENT_SCALE_FACTOR();
|
2010-08-18 15:15:02 +08:00
|
|
|
|
2010-12-25 15:09:42 +08:00
|
|
|
glGetIntegerv(GL_FRAMEBUFFER_BINDING_OES, &m_nOldFBO);
|
2010-08-18 15:15:02 +08:00
|
|
|
|
2010-12-25 15:09:42 +08:00
|
|
|
// textures must be power of two squared
|
|
|
|
unsigned int powW = ccNextPOT(w);
|
|
|
|
unsigned int powH = ccNextPOT(h);
|
2010-08-18 15:15:02 +08:00
|
|
|
|
2010-12-25 15:09:42 +08:00
|
|
|
void *data = malloc((int)(powW * powH * 4));
|
2011-03-07 17:11:57 +08:00
|
|
|
CC_BREAK_IF(! data);
|
2010-08-18 15:15:02 +08:00
|
|
|
|
2010-12-25 15:09:42 +08:00
|
|
|
memset(data, 0, (int)(powW * powH * 4));
|
|
|
|
m_ePixelFormat = eFormat;
|
2010-08-18 15:15:02 +08:00
|
|
|
|
2010-12-25 15:09:42 +08:00
|
|
|
m_pTexture = new CCTexture2D();
|
2011-03-07 17:11:57 +08:00
|
|
|
CC_BREAK_IF(! m_pTexture);
|
2010-08-18 15:15:02 +08:00
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
m_pTexture->initWithData(data, (CCTexture2DPixelFormat)m_ePixelFormat, powW, powH, CCSizeMake((float)w, (float)h));
|
2010-12-25 15:09:42 +08:00
|
|
|
free( data );
|
2010-08-18 15:15:02 +08:00
|
|
|
|
2010-12-25 15:09:42 +08:00
|
|
|
// generate FBO
|
|
|
|
ccglGenFramebuffers(1, &m_uFBO);
|
|
|
|
ccglBindFramebuffer(CC_GL_FRAMEBUFFER, m_uFBO);
|
|
|
|
|
|
|
|
// associate texture with FBO
|
|
|
|
ccglFramebufferTexture2D(CC_GL_FRAMEBUFFER, CC_GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, m_pTexture->getName(), 0);
|
|
|
|
|
|
|
|
// check if it worked (probably worth doing :) )
|
|
|
|
GLuint status = ccglCheckFramebufferStatus(CC_GL_FRAMEBUFFER);
|
|
|
|
if (status != CC_GL_FRAMEBUFFER_COMPLETE)
|
|
|
|
{
|
2011-03-07 17:11:57 +08:00
|
|
|
CCAssert(0, "Render Texture : Could not attach texture to framebuffer");
|
|
|
|
CC_SAFE_DELETE(m_pTexture);
|
2010-12-25 15:09:42 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_pTexture->setAliasTexParameters();
|
|
|
|
|
|
|
|
m_pSprite = CCSprite::spriteWithTexture(m_pTexture);
|
|
|
|
|
|
|
|
m_pTexture->release();
|
|
|
|
m_pSprite->setScaleY(-1);
|
|
|
|
this->addChild(m_pSprite);
|
|
|
|
|
|
|
|
ccBlendFunc tBlendFunc = {GL_ONE, GL_ONE_MINUS_SRC_ALPHA };
|
|
|
|
m_pSprite->setBlendFunc(tBlendFunc);
|
|
|
|
|
|
|
|
ccglBindFramebuffer(CC_GL_FRAMEBUFFER, m_nOldFBO);
|
|
|
|
bRet = true;
|
|
|
|
} while (0);
|
|
|
|
return bRet;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCRenderTexture::begin()
|
|
|
|
{
|
|
|
|
// Save the current matrix
|
|
|
|
glPushMatrix();
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
CCSize texSize = m_pTexture->getContentSizeInPixels();
|
2010-12-25 15:09:42 +08:00
|
|
|
|
|
|
|
// Calculate the adjustment ratios based on the old and new projections
|
2011-03-07 17:11:57 +08:00
|
|
|
CCSize size = CCDirector::sharedDirector()->getDisplaySizeInPixels();
|
2010-12-25 15:09:42 +08:00
|
|
|
float widthRatio = size.width / texSize.width;
|
|
|
|
float heightRatio = size.height / texSize.height;
|
|
|
|
|
|
|
|
// Adjust the orthographic propjection and viewport
|
|
|
|
ccglOrtho((float)-1.0 / widthRatio, (float)1.0 / widthRatio, (float)-1.0 / heightRatio, (float)1.0 / heightRatio, -1,1);
|
2011-02-18 18:30:22 +08:00
|
|
|
glViewport(0, 0, (GLsizei)texSize.width, (GLsizei)texSize.height);
|
|
|
|
// CCDirector::sharedDirector()->getOpenGLView()->setViewPortInPoints(0, 0, texSize.width, texSize.height);
|
2010-12-25 15:09:42 +08:00
|
|
|
|
|
|
|
glGetIntegerv(CC_GL_FRAMEBUFFER_BINDING, &m_nOldFBO);
|
|
|
|
ccglBindFramebuffer(CC_GL_FRAMEBUFFER, m_uFBO);//Will direct drawing to the frame buffer created above
|
|
|
|
|
2011-07-27 16:55:04 +08:00
|
|
|
// Issue #1145
|
|
|
|
// There is no need to enable the default GL states here
|
|
|
|
// but since CCRenderTexture is mostly used outside the "render" loop
|
|
|
|
// these states needs to be enabled.
|
|
|
|
// Since this bug was discovered in API-freeze (very close of 1.0 release)
|
|
|
|
// This bug won't be fixed to prevent incompatibilities with code.
|
|
|
|
//
|
2011-07-04 16:01:57 +08:00
|
|
|
// If you understand the above mentioned message, then you can comment the following line
|
|
|
|
// and enable the gl states manually, in case you need them.
|
|
|
|
|
2010-12-25 15:09:42 +08:00
|
|
|
CC_ENABLE_DEFAULT_GL_STATES();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCRenderTexture::beginWithClear(float r, float g, float b, float a)
|
|
|
|
{
|
2011-07-04 16:01:57 +08:00
|
|
|
this->begin();
|
2010-12-25 15:09:42 +08:00
|
|
|
|
2011-07-04 16:01:57 +08:00
|
|
|
// save clear color
|
|
|
|
GLfloat clearColor[4];
|
|
|
|
glGetFloatv(GL_COLOR_CLEAR_VALUE,clearColor);
|
2010-12-25 15:09:42 +08:00
|
|
|
|
2011-07-04 16:01:57 +08:00
|
|
|
glClearColor(r, g, b, a);
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
2010-12-25 15:09:42 +08:00
|
|
|
|
2011-07-04 16:01:57 +08:00
|
|
|
// restore clear color
|
|
|
|
glClearColor(clearColor[0], clearColor[1], clearColor[2], clearColor[3]);
|
2010-12-25 15:09:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCRenderTexture::end()
|
|
|
|
{
|
|
|
|
ccglBindFramebuffer(CC_GL_FRAMEBUFFER, m_nOldFBO);
|
|
|
|
// Restore the original matrix and viewport
|
|
|
|
glPopMatrix();
|
2011-03-07 17:11:57 +08:00
|
|
|
CCSize size = CCDirector::sharedDirector()->getDisplaySizeInPixels();
|
2011-02-18 18:30:22 +08:00
|
|
|
// glViewport(0, 0, (GLsizei)size.width, (GLsizei)size.height);
|
|
|
|
CCDirector::sharedDirector()->getOpenGLView()->setViewPortInPoints(0, 0, size.width, size.height);
|
2010-12-25 15:09:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCRenderTexture::clear(float r, float g, float b, float a)
|
|
|
|
{
|
2011-07-04 16:01:57 +08:00
|
|
|
this->beginWithClear(r, g, b, a);
|
2010-12-25 15:09:42 +08:00
|
|
|
this->end();
|
|
|
|
}
|
|
|
|
|
2011-07-29 11:36:04 +08:00
|
|
|
bool CCRenderTexture::saveBuffer(const char *szFilePath)
|
2010-12-25 15:09:42 +08:00
|
|
|
{
|
2011-07-29 11:36:04 +08:00
|
|
|
bool bRet = false;
|
|
|
|
|
|
|
|
CCImage *pImage = new CCImage();
|
|
|
|
if (pImage != NULL && getUIImageFromBuffer(pImage))
|
|
|
|
{
|
|
|
|
bRet = pImage->saveToFile(szFilePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
CC_SAFE_DELETE(pImage);
|
|
|
|
return bRet;
|
2010-12-25 15:09:42 +08:00
|
|
|
}
|
|
|
|
bool CCRenderTexture::saveBuffer(const char *fileName, int format)
|
|
|
|
{
|
2011-07-27 16:55:04 +08:00
|
|
|
bool bRet = false;
|
|
|
|
CCAssert(format == kCCImageFormatJPG || format == kCCImageFormatPNG,
|
2011-07-28 10:09:56 +08:00
|
|
|
"the image can only be saved as JPG or PNG format");
|
2011-07-27 16:55:04 +08:00
|
|
|
|
|
|
|
CCImage *pImage = new CCImage();
|
|
|
|
if (pImage != NULL && getUIImageFromBuffer(pImage))
|
|
|
|
{
|
|
|
|
std::string fullpath = CCFileUtils::getWriteablePath() + fileName;
|
|
|
|
if (kCCImageFormatPNG == format)
|
|
|
|
{
|
|
|
|
fullpath += ".png";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fullpath += ".jpg";
|
|
|
|
}
|
|
|
|
|
|
|
|
bRet = pImage->saveToFile(fullpath.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
CC_SAFE_DELETE(pImage);
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
2011-07-28 18:02:25 +08:00
|
|
|
/* get buffer as UIImage */
|
|
|
|
bool CCRenderTexture::getUIImageFromBuffer(CCImage *pImage)
|
|
|
|
{
|
|
|
|
if (NULL == pImage)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-08-02 10:05:15 +08:00
|
|
|
GLubyte *pBuffer = NULL;
|
|
|
|
GLubyte *pTempData = NULL;
|
|
|
|
bool bRet = false;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
CCAssert(m_ePixelFormat == kCCTexture2DPixelFormat_RGBA8888, "only RGBA8888 can be saved as image");
|
|
|
|
|
2011-07-28 18:02:25 +08:00
|
|
|
CCSize s = m_pTexture->getContentSizeInPixels();
|
|
|
|
int tx = (int)s.width;
|
2011-08-02 10:05:15 +08:00
|
|
|
int ty = (int)s.height;
|
|
|
|
|
|
|
|
CC_BREAK_IF(! (pBuffer = new GLubyte[tx * ty * 4]));
|
|
|
|
CC_BREAK_IF(! (pTempData = new GLubyte[tx * ty * 4]));
|
2011-07-28 18:02:25 +08:00
|
|
|
|
2011-08-02 10:05:15 +08:00
|
|
|
// On some machines, like Samsung i9000, Motorola Defy,
|
|
|
|
// the dimension need to be a power of 2
|
|
|
|
int nReadBufferWidth = 0;
|
|
|
|
int nReadBufferHeight = 0;
|
|
|
|
int nMaxTextureSize = 0;
|
|
|
|
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &nMaxTextureSize);
|
2011-07-28 18:02:25 +08:00
|
|
|
|
2011-08-02 10:05:15 +08:00
|
|
|
for (int i = 0; i <= 12; i++)
|
|
|
|
{
|
|
|
|
int nPowerTwo = (int)pow(2.0f, (float)i);
|
|
|
|
if (0 == nReadBufferWidth && tx <= nPowerTwo)
|
|
|
|
{
|
|
|
|
nReadBufferWidth = nPowerTwo;
|
|
|
|
}
|
|
|
|
if (0 == nReadBufferHeight && ty <= nPowerTwo)
|
|
|
|
{
|
|
|
|
nReadBufferHeight = nPowerTwo;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CC_BREAK_IF(0 == nReadBufferWidth || 0 == nReadBufferHeight);
|
|
|
|
CC_BREAK_IF(nReadBufferWidth > nMaxTextureSize || nReadBufferHeight > nMaxTextureSize);
|
|
|
|
|
|
|
|
CC_BREAK_IF(! (pTempData = new GLubyte[nReadBufferWidth * nReadBufferHeight * 4]));
|
2011-07-28 18:02:25 +08:00
|
|
|
this->begin();
|
|
|
|
glPixelStorei(GL_PACK_ALIGNMENT, 1);
|
2011-08-02 10:05:15 +08:00
|
|
|
glReadPixels(0,0,nReadBufferWidth,nReadBufferHeight,GL_RGBA,GL_UNSIGNED_BYTE, pTempData);
|
2011-07-28 18:02:25 +08:00
|
|
|
|
2011-08-02 10:05:15 +08:00
|
|
|
this->end();
|
|
|
|
|
|
|
|
// to get the actual texture data
|
2011-07-28 18:02:25 +08:00
|
|
|
// #640 the image read from rendertexture is upseted
|
|
|
|
for (int i = 0; i < ty; ++i)
|
|
|
|
{
|
2011-08-02 10:05:15 +08:00
|
|
|
memcpy(&pBuffer[i * tx * 4],
|
|
|
|
&pTempData[(ty - i - 1) * nReadBufferWidth * 4],
|
|
|
|
tx * 4);
|
2011-07-28 18:02:25 +08:00
|
|
|
}
|
2011-08-02 10:05:15 +08:00
|
|
|
|
|
|
|
bRet = pImage->initWithImageData(pBuffer, tx * ty * 4, CCImage::kFmtRawData, tx, ty, 8);
|
2011-07-28 18:02:25 +08:00
|
|
|
} while (0);
|
|
|
|
|
|
|
|
CC_SAFE_DELETE_ARRAY(pBuffer);
|
|
|
|
CC_SAFE_DELETE_ARRAY(pTempData);
|
|
|
|
|
|
|
|
return bRet;
|
2010-12-25 15:09:42 +08:00
|
|
|
}
|
|
|
|
|
2011-07-27 16:55:04 +08:00
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
CCData * CCRenderTexture::getUIImageAsDataFromBuffer(int format)
|
2010-12-25 15:09:42 +08:00
|
|
|
{
|
2011-06-10 17:51:37 +08:00
|
|
|
CC_UNUSED_PARAM(format);
|
2011-03-07 17:11:57 +08:00
|
|
|
CCData * pData = NULL;
|
2010-12-25 15:09:42 +08:00
|
|
|
//@ todo CCRenderTexture::getUIImageAsDataFromBuffer
|
|
|
|
|
|
|
|
// #include "Availability.h"
|
|
|
|
// #include "UIKit.h"
|
|
|
|
|
|
|
|
// GLubyte * pBuffer = NULL;
|
|
|
|
// GLubyte * pPixels = NULL;
|
|
|
|
// do
|
|
|
|
// {
|
2011-03-07 17:11:57 +08:00
|
|
|
// CC_BREAK_IF(! m_pTexture);
|
2010-12-25 15:09:42 +08:00
|
|
|
//
|
2011-03-07 17:11:57 +08:00
|
|
|
// CCAssert(m_ePixelFormat == kCCTexture2DPixelFormat_RGBA8888, "only RGBA8888 can be saved as image");
|
2010-12-25 15:09:42 +08:00
|
|
|
//
|
2011-03-07 17:11:57 +08:00
|
|
|
// CCSize s = m_pTexture->getContentSizeInPixels();
|
2010-12-25 15:09:42 +08:00
|
|
|
// int tx = s.width;
|
|
|
|
// int ty = s.height;
|
|
|
|
//
|
|
|
|
// int bitsPerComponent = 8;
|
|
|
|
// int bitsPerPixel = 32;
|
|
|
|
//
|
|
|
|
// int bytesPerRow = (bitsPerPixel / 8) * tx;
|
|
|
|
// int myDataLength = bytesPerRow * ty;
|
|
|
|
//
|
2011-03-07 17:11:57 +08:00
|
|
|
// CC_BREAK_IF(! (pBuffer = new GLubyte[tx * ty * 4]));
|
|
|
|
// CC_BREAK_IF(! (pPixels = new GLubyte[tx * ty * 4]));
|
2010-12-25 15:09:42 +08:00
|
|
|
//
|
|
|
|
// this->begin();
|
|
|
|
// glReadPixels(0,0,tx,ty,GL_RGBA,GL_UNSIGNED_BYTE, pBuffer);
|
|
|
|
// this->end();
|
|
|
|
//
|
|
|
|
// int x,y;
|
|
|
|
//
|
|
|
|
// for(y = 0; y <ty; y++) {
|
|
|
|
// for(x = 0; x <tx * 4; x++) {
|
|
|
|
// pPixels[((ty - 1 - y) * tx * 4 + x)] = pBuffer[(y * 4 * tx + x)];
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// if (format == kCCImageFormatRawData)
|
|
|
|
// {
|
2011-03-07 17:11:57 +08:00
|
|
|
// pData = CCData::dataWithBytesNoCopy(pPixels, myDataLength);
|
2010-12-25 15:09:42 +08:00
|
|
|
// break;
|
|
|
|
// }
|
|
|
|
|
|
|
|
//@ todo impliment save to jpg or png
|
|
|
|
/*
|
|
|
|
CGImageCreate(size_t width, size_t height,
|
|
|
|
size_t bitsPerComponent, size_t bitsPerPixel, size_t bytesPerRow,
|
|
|
|
CGColorSpaceRef space, CGBitmapInfo bitmapInfo, CGDataProviderRef provider,
|
|
|
|
const CGFloat decode[], bool shouldInterpolate,
|
|
|
|
CGColorRenderingIntent intent)
|
|
|
|
*/
|
|
|
|
// make data provider with data.
|
|
|
|
// CGBitmapInfo bitmapInfo = kCGImageAlphaPremultipliedLast | kCGBitmapByteOrderDefault;
|
|
|
|
// CGDataProviderRef provider = CGDataProviderCreateWithData(NULL, pixels, myDataLength, NULL);
|
|
|
|
// CGColorSpaceRef colorSpaceRef = CGColorSpaceCreateDeviceRGB();
|
|
|
|
// CGImageRef iref = CGImageCreate(tx, ty,
|
|
|
|
// bitsPerComponent, bitsPerPixel, bytesPerRow,
|
|
|
|
// colorSpaceRef, bitmapInfo, provider,
|
|
|
|
// NULL, false,
|
|
|
|
// kCGRenderingIntentDefault);
|
|
|
|
//
|
|
|
|
// UIImage* image = [[UIImage alloc] initWithCGImage:iref];
|
|
|
|
//
|
|
|
|
// CGImageRelease(iref);
|
|
|
|
// CGColorSpaceRelease(colorSpaceRef);
|
|
|
|
// CGDataProviderRelease(provider);
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// if (format == kCCImageFormatPNG)
|
|
|
|
// data = UIImagePNGRepresentation(image);
|
|
|
|
// else
|
|
|
|
// data = UIImageJPEGRepresentation(image, 1.0f);
|
|
|
|
//
|
|
|
|
// [image release];
|
|
|
|
// } while (0);
|
|
|
|
//
|
2011-03-07 17:11:57 +08:00
|
|
|
// CC_SAFE_DELETE_ARRAY(pBuffer);
|
|
|
|
// CC_SAFE_DELETE_ARRAY(pPixels);
|
2010-12-25 15:09:42 +08:00
|
|
|
return pData;
|
|
|
|
}
|
2010-11-12 17:29:14 +08:00
|
|
|
|
|
|
|
} // namespace cocos2d
|