[cocos2d-x 2.0.4][iOS7]图片加载错误

前端之家收集整理的这篇文章主要介绍了[cocos2d-x 2.0.4][iOS7]图片加载错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本篇文章由:http://www.sollyu.com/cocos2d-x-2-0-4-ios7-image-loading-errors/

说明

错误提示

<Error>:CGBitmapContextCreate:unsupportedparametercombination:8integerbits/component;32bits/pixel;3-componentcolorspace;kCGImageAlphaPremultipliedLast;1266bytes/row.

解决

定位文件CCimage.mm并找到函数_initWithString

函数原型

staticbool_initWithString(constchar*pText,cocos2d::CCImage::ETextAligneAlign,constchar*pFontName,intnSize,tImageInfo*pInfo)

找到代码

代码位置大约在301

// draw text
CGColorSpaceRef colorSpace  = CGColorSpaceCreateDeviceRGB();
CGContextRef context        = CGBitmapContextCreate(data,
                                                    dim.width,
                                                    dim.height,
                                                    8,
                                                    (int)dim.width * 4, // 此处为修改
                                                    colorSpace,
                                                    kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);

原理

因为dim.width * 4有可能不是整数,所以就来个强制类型转换。

猜你在找的Cocos2d-x相关文章