
I want to get these photo effects in my Livewallpaper.I searched through but it was no match.

I want to get these photo effects in my Livewallpaper.I searched through but it was no match.
You can draw text with a custom font like this example.
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);
And then you can add effects to it like these stackoverflow questions here and here.