我正在尝试使用 PlayN Showcase 应用程序中的方法绘制一些 txt:
protected static Layer createTextLayer(TextLayout layout, int color) {
CanvasImage image = graphics().createImage((int) Math.ceil(layout.width()), (int) Math.ceil(layout.height()));
image.canvas().setFillColor(color);
image.canvas().fillText(layout, 0, 0);
return graphics().createImageLayer(image);
}
它适用于 HTML/Canvas,但不适用于 HTML/Dom。