cocos jpg alpha_mask png

前端之家收集整理的这篇文章主要介绍了cocos jpg alpha_mask png前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Texture2D* StartLayer::addJpgMaskPng(const char* jpgName,const char* maskName) { CCImage *jpgImage = new CCImage(); jpgImage->initWithImageFile(jpgName); unsigned char *jpgData = jpgImage->getData(); int lenJPGPerPixel = jpgImage->getBitPerPixel() / 8; int width = jpgImage->getWidth(); int height = jpgImage->getHeight(); int len = width * height; CCImage *alphaImage = new CCImage(); alphaImage->initWithImageFile(maskName); unsigned char *alphaData = alphaImage->getData(); int lenAlphaPerPixel = alphaImage->getBitPerPixel() / 8; unsigned char *outPic = new unsigned char[width * height * 4]; int outIndex = 0; int srcIndex = 0; for (int i = 0; i < len; i++) { outPic[outIndex + 0] = jpgData[srcIndex + 0]; outPic[outIndex + 1] = jpgData[srcIndex + 1]; outPic[outIndex + 2] = jpgData[srcIndex + 2]; outPic[outIndex + 3] = alphaData[i*lenAlphaPerPixel]; srcIndex += 3; outIndex += 4; } CCTexture2D *texture = new CCTexture2D(); texture->initWithData(outPic,len * 4,Texture2D::PixelFormat::RGBA8888,width,height,Size((float)width,(float)height)); delete jpgImage; delete alphaImage; delete[] outPic; return texture; } 原文链接:https://www.f2er.com/cocos2dx/340436.html

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