2011-01-15 18:05:35 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
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-03-07 17:11:57 +08:00
|
|
|
#include "CCImage.h"
|
2011-01-15 18:05:35 +08:00
|
|
|
|
2011-03-09 12:00:04 +08:00
|
|
|
#include "CCCommon.h"
|
2011-03-07 17:11:57 +08:00
|
|
|
#include "CCStdC.h"
|
2011-03-29 11:41:44 +08:00
|
|
|
#include "CCFileUtils.h"
|
2011-01-15 18:05:35 +08:00
|
|
|
#include "png.h"
|
2011-03-09 12:00:04 +08:00
|
|
|
#include <string>
|
2011-02-17 14:31:52 +08:00
|
|
|
|
2011-03-09 17:28:35 +08:00
|
|
|
#define QGLOBAL_H // defined for wophone
|
2011-01-15 18:05:35 +08:00
|
|
|
#include "jpeglib.h"
|
2011-02-17 14:31:52 +08:00
|
|
|
#undef QGLOBAL_H
|
2011-01-15 18:05:35 +08:00
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
#define CC_RGB_PREMULTIPLY_APLHA(vr, vg, vb, va) \
|
2011-03-28 10:44:14 +08:00
|
|
|
(unsigned)(((unsigned)((unsigned char)(vr) * ((unsigned char)(va) + 1)) >> 8) | \
|
|
|
|
((unsigned)((unsigned char)(vg) * ((unsigned char)(va) + 1) >> 8) << 8) | \
|
|
|
|
((unsigned)((unsigned char)(vb) * ((unsigned char)(va) + 1) >> 8) << 16) | \
|
|
|
|
((unsigned)(unsigned char)(va) << 24))
|
2011-01-15 18:05:35 +08:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned char* data;
|
|
|
|
int size;
|
|
|
|
int offset;
|
|
|
|
}tImageSource;
|
|
|
|
|
|
|
|
static void pngReadCallback(png_structp png_ptr, png_bytep data, png_size_t length)
|
|
|
|
{
|
|
|
|
tImageSource* isource = (tImageSource*)png_get_io_ptr(png_ptr);
|
|
|
|
|
|
|
|
if((int)(isource->offset + length) <= isource->size)
|
|
|
|
{
|
|
|
|
memcpy(data, isource->data+isource->offset, length);
|
|
|
|
isource->offset += length;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
png_error(png_ptr, "pngReaderCallback failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-23 18:22:05 +08:00
|
|
|
NS_CC_BEGIN;
|
2011-01-15 18:05:35 +08:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2011-03-07 17:11:57 +08:00
|
|
|
// Impliment CCImage
|
2011-01-15 18:05:35 +08:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
CCImage::CCImage()
|
2011-01-15 18:05:35 +08:00
|
|
|
: m_nWidth(0)
|
|
|
|
, m_nHeight(0)
|
|
|
|
, m_nBitsPerComponent(0)
|
2011-03-28 10:44:14 +08:00
|
|
|
, m_pData(0)
|
2011-01-15 18:05:35 +08:00
|
|
|
, m_bHasAlpha(false)
|
|
|
|
, m_bPreMulti(false)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
CCImage::~CCImage()
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE_ARRAY(m_pData);
|
|
|
|
}
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
bool CCImage::initWithImageFile(const char * strPath, EImageFormat eImgFmt/* = eFmtPng*/)
|
2011-01-15 18:05:35 +08:00
|
|
|
{
|
2011-03-29 11:41:44 +08:00
|
|
|
CCFileData data(CCFileUtils::fullPathFromRelativePath(strPath), "rb");
|
|
|
|
return initWithImageData(data.getBuffer(), data.getSize());
|
2011-01-15 18:05:35 +08:00
|
|
|
}
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
bool CCImage::initWithImageData(void * pData, int nDataLen, EImageFormat eFmt/* = eSrcFmtPng*/)
|
2011-01-15 18:05:35 +08:00
|
|
|
{
|
|
|
|
bool bRet = false;
|
|
|
|
do
|
|
|
|
{
|
2011-03-07 17:11:57 +08:00
|
|
|
CC_BREAK_IF(! pData || nDataLen <= 0);
|
2011-01-15 18:05:35 +08:00
|
|
|
|
2011-01-19 14:23:26 +08:00
|
|
|
if (kFmtPng == eFmt)
|
2011-01-15 18:05:35 +08:00
|
|
|
{
|
|
|
|
bRet = _initWithPngData(pData, nDataLen);
|
|
|
|
break;
|
|
|
|
}
|
2011-01-19 14:23:26 +08:00
|
|
|
else if (kFmtJpg == eFmt)
|
2011-01-15 18:05:35 +08:00
|
|
|
{
|
2011-02-17 16:16:50 +08:00
|
|
|
bRet = _initWithJpgData(pData, nDataLen);
|
2011-01-15 18:05:35 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (0);
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
bool CCImage::_initWithJpgData(void * data, int nSize)
|
2011-01-15 18:05:35 +08:00
|
|
|
{
|
|
|
|
/* these are standard libjpeg structures for reading(decompression) */
|
|
|
|
struct jpeg_decompress_struct cinfo;
|
|
|
|
struct jpeg_error_mgr jerr;
|
|
|
|
/* libjpeg data structure for storing one row, that is, scanline of an image */
|
2011-03-28 10:44:14 +08:00
|
|
|
JSAMPROW row_pointer[1] = {0};
|
2011-01-15 18:05:35 +08:00
|
|
|
unsigned long location = 0;
|
|
|
|
unsigned int i = 0;
|
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
bool bRet = false;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
/* here we set up the standard libjpeg error handler */
|
|
|
|
cinfo.err = jpeg_std_error( &jerr );
|
2011-01-15 18:05:35 +08:00
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
/* setup decompression process and source, then read JPEG header */
|
|
|
|
jpeg_create_decompress( &cinfo );
|
2011-01-15 18:05:35 +08:00
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
/* this makes the library read from infile */
|
|
|
|
jpeg_mem_src( &cinfo, (unsigned char *) data, nSize );
|
2011-01-15 18:05:35 +08:00
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
/* reading the image header which contains image information */
|
|
|
|
jpeg_read_header( &cinfo, true );
|
2011-01-15 18:05:35 +08:00
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
// we only support RGB or grayscale
|
|
|
|
if (cinfo.jpeg_color_space != JCS_RGB)
|
2011-01-15 18:05:35 +08:00
|
|
|
{
|
2011-03-28 10:44:14 +08:00
|
|
|
if (cinfo.jpeg_color_space == JCS_GRAYSCALE || cinfo.jpeg_color_space == JCS_YCbCr)
|
|
|
|
{
|
|
|
|
cinfo.out_color_space = JCS_RGB;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
2011-01-15 18:05:35 +08:00
|
|
|
}
|
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
/* Start decompression jpeg here */
|
|
|
|
jpeg_start_decompress( &cinfo );
|
2011-01-15 18:05:35 +08:00
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
/* init image info */
|
|
|
|
m_nWidth = cinfo.image_width;
|
|
|
|
m_nHeight = cinfo.image_height;
|
|
|
|
m_bHasAlpha = false;
|
|
|
|
m_bPreMulti = false;
|
|
|
|
m_nBitsPerComponent = 8;
|
|
|
|
row_pointer[0] = new unsigned char[cinfo.output_width*cinfo.output_components];
|
|
|
|
CC_BREAK_IF(! row_pointer[0]);
|
2011-01-15 18:05:35 +08:00
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
m_pData = new unsigned char[cinfo.output_width*cinfo.output_height*cinfo.output_components];
|
|
|
|
CC_BREAK_IF(! m_pData);
|
2011-01-15 18:05:35 +08:00
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
/* now actually read the jpeg into the raw buffer */
|
|
|
|
/* read one scan line at a time */
|
|
|
|
while( cinfo.output_scanline < cinfo.image_height )
|
|
|
|
{
|
|
|
|
jpeg_read_scanlines( &cinfo, row_pointer, 1 );
|
|
|
|
for( i=0; i<cinfo.image_width*cinfo.num_components;i++)
|
|
|
|
m_pData[location++] = row_pointer[0][i];
|
|
|
|
}
|
2011-01-15 18:05:35 +08:00
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
jpeg_finish_decompress( &cinfo );
|
|
|
|
jpeg_destroy_decompress( &cinfo );
|
|
|
|
/* wrap up decompression, destroy objects, free pointers and close open files */
|
|
|
|
bRet = true;
|
|
|
|
} while (0);
|
2011-01-15 18:05:35 +08:00
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
CC_SAFE_DELETE_ARRAY(row_pointer[0]);
|
|
|
|
return bRet;
|
2011-01-15 18:05:35 +08:00
|
|
|
}
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
bool CCImage::_initWithPngData(void * pData, int nDatalen)
|
2011-01-15 18:05:35 +08:00
|
|
|
{
|
|
|
|
bool bRet = false;
|
|
|
|
png_byte header[8] = {0};
|
2011-03-28 10:44:14 +08:00
|
|
|
png_structp png_ptr = 0;
|
2011-02-23 18:22:05 +08:00
|
|
|
png_infop info_ptr = 0;
|
2011-03-28 10:44:14 +08:00
|
|
|
unsigned char * pImateData = 0;
|
2011-01-15 18:05:35 +08:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// png header len is 8 bytes
|
2011-03-07 17:11:57 +08:00
|
|
|
CC_BREAK_IF(nDatalen < 8);
|
2011-01-15 18:05:35 +08:00
|
|
|
|
|
|
|
// check the data is png or not
|
|
|
|
memcpy(header, pData, 8);
|
2011-03-07 17:11:57 +08:00
|
|
|
CC_BREAK_IF(png_sig_cmp(header, 0, 8));
|
2011-01-15 18:05:35 +08:00
|
|
|
|
|
|
|
// init png_struct
|
2011-02-23 18:22:05 +08:00
|
|
|
png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0);
|
2011-03-07 17:11:57 +08:00
|
|
|
CC_BREAK_IF(! png_ptr);
|
2011-01-15 18:05:35 +08:00
|
|
|
|
|
|
|
// init png_info
|
|
|
|
info_ptr = png_create_info_struct(png_ptr);
|
2011-03-07 17:11:57 +08:00
|
|
|
CC_BREAK_IF(! info_ptr || setjmp(png_jmpbuf(png_ptr)));
|
2011-01-15 18:05:35 +08:00
|
|
|
|
|
|
|
// set the read call back function
|
|
|
|
tImageSource imageSource;
|
|
|
|
imageSource.data = (unsigned char*)pData;
|
|
|
|
imageSource.size = nDatalen;
|
|
|
|
imageSource.offset = 0;
|
|
|
|
png_set_read_fn(png_ptr, &imageSource, pngReadCallback);
|
|
|
|
|
|
|
|
// read png
|
|
|
|
// PNG_TRANSFORM_EXPAND: perform set_expand()
|
|
|
|
// PNG_TRANSFORM_PACKING: expand 1, 2 and 4-bit samples to bytes
|
|
|
|
// PNG_TRANSFORM_STRIP_16: strip 16-bit samples to 8 bits
|
|
|
|
// PNG_TRANSFORM_GRAY_TO_RGB: expand grayscale samples to RGB (or GA to RGBA)
|
|
|
|
png_read_png(png_ptr, info_ptr, PNG_TRANSFORM_EXPAND | PNG_TRANSFORM_PACKING
|
2011-02-23 18:22:05 +08:00
|
|
|
| PNG_TRANSFORM_STRIP_16 | PNG_TRANSFORM_GRAY_TO_RGB, 0);
|
2011-01-15 18:05:35 +08:00
|
|
|
|
|
|
|
int color_type = 0;
|
|
|
|
png_uint_32 nWidth = 0;
|
|
|
|
png_uint_32 nHeight = 0;
|
|
|
|
int nBitsPerComponent = 0;
|
2011-02-23 18:22:05 +08:00
|
|
|
png_get_IHDR(png_ptr, info_ptr, &nWidth, &nHeight, &nBitsPerComponent, &color_type, 0, 0, 0);
|
2011-01-15 18:05:35 +08:00
|
|
|
|
|
|
|
// init image info
|
|
|
|
m_bPreMulti = true;
|
|
|
|
m_bHasAlpha = ( info_ptr->color_type & PNG_COLOR_MASK_ALPHA ) ? true : false;
|
|
|
|
|
|
|
|
// allocate memory and read data
|
|
|
|
int bytesPerComponent = 3;
|
|
|
|
if (m_bHasAlpha)
|
|
|
|
{
|
|
|
|
bytesPerComponent = 4;
|
|
|
|
}
|
2011-03-28 10:44:14 +08:00
|
|
|
pImateData = new unsigned char[nHeight * nWidth * bytesPerComponent];
|
|
|
|
CC_BREAK_IF(! pImateData);
|
|
|
|
|
2011-01-15 18:05:35 +08:00
|
|
|
png_bytep * rowPointers = png_get_rows(png_ptr, info_ptr);
|
|
|
|
|
|
|
|
// copy data to image info
|
|
|
|
int bytesPerRow = nWidth * bytesPerComponent;
|
|
|
|
if(m_bHasAlpha)
|
|
|
|
{
|
2011-03-28 10:44:14 +08:00
|
|
|
unsigned int *tmp = (unsigned int *)pImateData;
|
2011-01-15 18:05:35 +08:00
|
|
|
for(unsigned int i = 0; i < nHeight; i++)
|
|
|
|
{
|
|
|
|
for(int j = 0; j < bytesPerRow; j += 4)
|
|
|
|
{
|
2011-03-07 17:11:57 +08:00
|
|
|
*tmp++ = CC_RGB_PREMULTIPLY_APLHA( rowPointers[i][j], rowPointers[i][j + 1],
|
2011-01-15 18:05:35 +08:00
|
|
|
rowPointers[i][j + 2], rowPointers[i][j + 3] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (unsigned int j = 0; j < nHeight; ++j)
|
|
|
|
{
|
2011-03-28 10:44:14 +08:00
|
|
|
memcpy(pImateData + j * bytesPerRow, rowPointers[j], bytesPerRow);
|
2011-01-15 18:05:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
m_nBitsPerComponent = nBitsPerComponent;
|
|
|
|
m_nHeight = (short)nHeight;
|
|
|
|
m_nWidth = (short)nWidth;
|
|
|
|
m_pData = pImateData;
|
|
|
|
pImateData = 0;
|
2011-01-15 18:05:35 +08:00
|
|
|
bRet = true;
|
|
|
|
} while (0);
|
|
|
|
|
2011-03-28 10:44:14 +08:00
|
|
|
CC_SAFE_DELETE_ARRAY(pImateData);
|
|
|
|
|
2011-03-17 14:26:36 +08:00
|
|
|
if (png_ptr)
|
2011-01-15 18:05:35 +08:00
|
|
|
{
|
2011-02-23 18:22:05 +08:00
|
|
|
png_destroy_read_struct(&png_ptr, (info_ptr) ? &info_ptr : 0, 0);
|
2011-01-15 18:05:35 +08:00
|
|
|
}
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END;
|
2011-01-19 14:23:26 +08:00
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
|
|
#include "win32/CCImage_win32.cpp"
|
2011-01-19 14:23:26 +08:00
|
|
|
#endif
|
2011-02-17 14:31:52 +08:00
|
|
|
|
2011-03-09 17:28:35 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE)
|
|
|
|
#include "wophone/CCImage_wophone.cpp"
|
2011-02-17 14:31:52 +08:00
|
|
|
#endif
|
2011-02-24 19:42:45 +08:00
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
|
|
|
|
#include "android/CCImage_android.cpp"
|
2011-02-24 19:42:45 +08:00
|
|
|
#endif
|