Issues with outline on CCLabelTTF

Hi

I was wondering if anyone can help me. I am loading a font using CCLabelTTF::initWithSting and I am getting the following result

I have now spent a few hours looking into it and can’t see what is causing it.

Thanks

disable anti aliasing? If you are using a thin outline font, then MSAA or CSAA will cause weird artifacts like that.

Thaks for gettign back to me so quickly. I have already tried m_pText->getTexture()->setAliasTexParameters(); it’s better than it is in that picture but it doesn’t disappear

It’s also part of the TTF source rendering. You might try using a BMP font instead so you have better control over the render quality. If disabling AA on your render has helped, then your source TTF render is also doing AA, and good luck disabling that. With the BMP rendering you can control every aspect of the output bitmap, which is a good way to deal with those really thin outlined fonts.

Yeah I was thinking of moving over to BMP fonts once I stated looking at this. Going to be quite a bit of work but it seems like it’s the best option. Thanks for your help

Did anyone have fixed this problem with CCLabelTTF ?