cocos2dx3.3显示中文

参考:http://www.2cto.com/kf/201404/295851.html

参考:http://blog.csdn.net/evankaka/article/details/43449943


#ifndef __ChineseString_H__    
#define __ChineseString_H__    
#include "cocos2d.h"
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
#include "..\cocos2d\external\win32-specific\icon\include\iconv.h"
#endif
#pragma comment(lib,"libiconv.lib")
#include "string"
using namespace std;


static char g_GBKConvUTF8Buf[5000] = { 0 };
class ChineseString
{
public:
static const char* GBKToUTF8(const char *strChar)//将字符串转成UFT-8  
{
iconv_t iconvH = iconv_open("utf-8", "gb2312");
if (iconvH == 0)
{
return NULL;
}
size_t strLength = strlen(strChar);
size_t outLength = strLength * 4;
size_t copyLength = outLength;
memset(g_GBKConvUTF8Buf, 0, 5000);


char* outbuf = (char*)malloc(outLength);
char* pBuff = outbuf;
memset(outbuf, 0, outLength);


if (-1 == iconv(iconvH, &strChar, &strLength, &outbuf, &outLength))
{
iconv_close(iconvH);
return NULL;
}
memcpy(g_GBKConvUTF8Buf, pBuff, copyLength);
free(pBuff);
iconv_close(iconvH);
return g_GBKConvUTF8Buf;
}
};
#endif



如何调用:

Label *lb = Label::create(ChineseString::GBKToUTF8("字幕滚动应该是要在一个范围内可见的\n\n\n摇杆背景!!"), "", 30);
lb->setPosition(visibleSize / 2);
lb->setDimensions(400, 200);
this->addChild(lb);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值