在画布中添加Wordart / Funky / Fancy Text Effects

时间:2014-01-10 02:25:55

标签: android canvas

How to get these funky text effects on an android canvas

我想在我的Livewallpaper中获得这些照片效果。我搜索过但是没有匹配。

1 个答案:

答案 0 :(得分:1)

您可以使用自定义字体绘制文字,例如this示例。

Paint paint = new Paint();
paint.setColor(Color.GREEN);
paint.setTextSize(40);
Typeface chops = Typeface.createFromAsset(getAssets(), "ChopinScript.ttf");
paint.setTypeface(chops);
float text_x = 120;
float text_y = 120;
canvas.drawText("Hello", text_x, text_y, paint);

然后你可以像这些stackoverflow问题herehere一样添加效果。