issue #6: change the implementation of CGImageGetColorSpace()

This commit is contained in:
Ming 2010-07-27 08:41:18 +00:00
Родитель b6dd87fb64
Коммит e5af08ae93
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -134,13 +134,13 @@ int UIImage::CGImageGetBitsPerComponent(void)
return nRet;
}
// 0 -> the bits of every color component is 8
// 0 -> it is a mask
// 1 -> other
int UIImage::CGImageGetColorSpace(void)
{
int nRet = 1;
if (CGImageGetBitsPerComponent() == 8)
if (m_pBitmap->GetRowBytes() == 1)
{
nRet = 0;
}