本文整理汇总了Java中org.piccolo2d.nodes.PText.toImage方法的典型用法代码示例。如果您正苦于以下问题:Java PText.toImage方法的具体用法?Java PText.toImage怎么用?Java PText.toImage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.piccolo2d.nodes.PText
的用法示例。
在下文中一共展示了PText.toImage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initialize
import org.piccolo2d.nodes.PText; //导入方法依赖的package包/类
/** {@inheritDoc} */
public void initialize() {
BufferedImage src = buildRedRectangleImage();
addHeaderAt("Shadow nodes drawn from an image, with increasing blur radius:", 0, 0);
double x = 25.0d;
double y = 25.0d;
for (int blurRadius = 4; blurRadius < 28; blurRadius += 4) {
PImage node = new PImage(src);
PShadow shadowNode = new PShadow(src, SHADOW_PAINT, blurRadius);
node.setOffset(x, y);
// offset the shadow to account for blur radius offset and light direction
shadowNode.setOffset(x - (2 * blurRadius) + 5.0d, y - (2 * blurRadius) + 5.0d);
// add shadow node before node, or set Z explicitly (e.g. sendToBack())
getCanvas().getLayer().addChild(shadowNode);
getCanvas().getLayer().addChild(node);
x += 125.0d;
if (x > 300.0d) {
y += 125.0d;
x = 25.0d;
}
}
addHeaderAt("Shadow nodes drawn from node.toImage():", 0, 300);
PPath rectNode = buildRedRectangleNode();
PShadow rectShadow = new PShadow(rectNode.toImage(), SHADOW_PAINT, 8);
rectShadow.setOffset(25.0d - (2 * 8) + 5.0d, 325.0d - (2 * 8) + 5.0d);
getCanvas().getLayer().addChild(rectShadow);
getCanvas().getLayer().addChild(rectNode);
PText textNode = new PText("Shadow Text");
textNode.setTextPaint(Color.RED);
textNode.setFont(textNode.getFont().deriveFont(36.0f));
textNode.setOffset(125.0d, 325.0d);
PShadow textShadow = new PShadow(textNode.toImage(), SHADOW_PAINT, 8);
textShadow.setOffset(125.0d - (2 * 8) + 2.5d, 325.0d - (2 * 8) + 2.5d);
getCanvas().getLayer().addChild(textShadow);
getCanvas().getLayer().addChild(textNode);
}