newEmbrossedTest stroke size

Embrossed Test has a bit of of a stroke on it. how could I increase it?

Unfortunately, you can’t.

But that said, our embossed text doesn’t actually use a “stroke”.  It renders the same text bitmap twice.  The “back” text is rendered slightly offsetted onscreen and blended with an opposite color (if top text is bright, back text is rendered dark; if top text is dark, back text is rendered bright).

You can reproduce this same effect by creating 2 text objects via display.newText() and offseting the back text any way you want.

shame theres no build in way to do this

https://github.com/ponywolf/strokeText

Thanks I implemented it.

Unfortunately, you can’t.

But that said, our embossed text doesn’t actually use a “stroke”.  It renders the same text bitmap twice.  The “back” text is rendered slightly offsetted onscreen and blended with an opposite color (if top text is bright, back text is rendered dark; if top text is dark, back text is rendered bright).

You can reproduce this same effect by creating 2 text objects via display.newText() and offseting the back text any way you want.

shame theres no build in way to do this

https://github.com/ponywolf/strokeText

Thanks I implemented it.