<div dir="ltr"><div>Hi,</div><div><br></div><div>I'm creating text objects that lie over the map, indicating the name of some cities. Pure white text was hard to read (the background represents vegetation, so it's colored, but some parts are white). Adding an outline solved that, but on close up, the outline looks pixelated and ugly. Using a drop_shadow also looks fine from a distance, but strange from a small distance, since the black shadow doesn't touch the white text. Is there something I can do to improve the appearance of the outline from close up, or to reduce the distance between the shadow and the text?</div><div><br></div><div>osg::Node* createLabel(const osg::Vec3& pos, float size, const std::string& label, osgText::Text::AxisAlignment axisAlignment)<br>{<br>    osg::Geode* geode = new osg::Geode();<br>    {<br>        osgText::Text* text = new osgText::Text;<br>        geode->addDrawable( text );<br>        text->setPosition(pos);<br>        text->setCharacterSize(size);<br>        text->setAxisAlignment(axisAlignment);<br>        text->setAlignment(osgText::Text::CENTER_CENTER);<br>        text->setBackdropType(osgText::Text::OUTLINE); // DROP_SHADOW_BOTTOM_RIGHT<br>        text->setBackdropColor(osg::Vec4(0.0f, 0.0f, 0.0f, 0.5f));<br>        std::string dest = desaxUTF8( label );<br>        text->setText( dest );<br>    }<br>    return geode;<br>}<br></div><div><br></div><div></div><div>Thanks,</div><div><br></div><div>Rodrigo.</div><div><br></div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups "OpenSceneGraph Users" group.<br />
To unsubscribe from this group and stop receiving emails from it, send an email to <a href="mailto:osg-users+unsubscribe@googlegroups.com">osg-users+unsubscribe@googlegroups.com</a>.<br />
To view this discussion on the web visit <a href="https://groups.google.com/d/msgid/osg-users/82ad1cc1-ec3d-4397-96d3-4bd4dc907c05%40googlegroups.com?utm_medium=email&utm_source=footer">https://groups.google.com/d/msgid/osg-users/82ad1cc1-ec3d-4397-96d3-4bd4dc907c05%40googlegroups.com</a>.<br />