mirror of https://github.com/axmolengine/axmol.git
146 lines
2.9 KiB
C++
146 lines
2.9 KiB
C++
/****************************************************************************
|
|
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.
|
|
****************************************************************************/
|
|
|
|
#include "UIImage.h"
|
|
|
|
#include <TG3.h>
|
|
|
|
using namespace std;
|
|
|
|
UIImage::UIImage(void)
|
|
{
|
|
m_pBitmap = NULL;
|
|
}
|
|
|
|
UIImage::UIImage(Int32 nX, Int32 nY, void *buffer)
|
|
{
|
|
|
|
}
|
|
|
|
UIImage::~UIImage(void)
|
|
{
|
|
}
|
|
|
|
bool UIImage::initWithContentsOfFile(const string &strPath)
|
|
{
|
|
if (m_pBitmap)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
m_pBitmap = TBitmap::CreateFromFile((TUChar *)(strPath.c_str()));
|
|
|
|
if (m_pBitmap && m_pBitmap->GetHeight() == 0)
|
|
{
|
|
m_pBitmap = NULL;
|
|
|
|
return false;
|
|
}
|
|
|
|
if (m_pBitmap)
|
|
{
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
UINT32 UIImage::width(void)
|
|
{
|
|
if (! m_pBitmap)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
return m_pBitmap->GetWidth();
|
|
}
|
|
|
|
UINT32 UIImage::height(void)
|
|
{
|
|
if (! m_pBitmap)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
return m_pBitmap->GetHeight();
|
|
}
|
|
|
|
bool UIImage::isAlphaPixelFormat(void)
|
|
{
|
|
if (! m_pBitmap)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool bRet;
|
|
if (m_pBitmap->HasAlphaData())
|
|
{
|
|
bRet = true;
|
|
}
|
|
else
|
|
{
|
|
bRet = false;
|
|
}
|
|
|
|
return bRet;
|
|
}
|
|
|
|
INT32 UIImage::CGImageGetBitsPerComponent(void)
|
|
{
|
|
if (! m_pBitmap)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
INT32 nRet = 0;
|
|
INT32 nRowBytes = m_pBitmap->GetRowBytes();
|
|
if (m_pBitmap->HasAlphaData())
|
|
{
|
|
// it has alpha data, so
|
|
// nRawBytes / 4 -> the bytes of per component
|
|
nRet = nRowBytes / 4 * 8;
|
|
}
|
|
else
|
|
{
|
|
// have not alpha data
|
|
// nRawBytes / 3 -> the bytes of per component
|
|
nRet = nRowBytes / 3 * 8;
|
|
}
|
|
|
|
return nRet;
|
|
}
|
|
|
|
INT32 UIImage::CGImageGetColorSpace(void)
|
|
{
|
|
INT32 nBitsPerComponent = CGImageGetBitsPerComponent();
|
|
if (nBitsPerComponent == 8 || nBitsPerComponent == 0)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|