3

How can this be accomplished?

Here is what I've tried so far:

paint = new Paint();

path=new Path();
path.moveTo(50, 50);
paint.setColor(Color.argb(255, 25, 25, 255));
paint.setTextSize(70);
paint.setFakeBoldText(true);

paint.setMaskFilter(new BlurMaskFilter(10, BlurMaskFilter.Blur.SOLID));
Typeface typeface = Typeface.create(Typeface.SANS_SERIF,Typeface.BOLD);
paint.setTypeface(typeface);           

paint.setStyle(Style.FILL_AND_STROKE);
paint.setAntiAlias(true);
paint.setDither(true);
paint.setTextAlign(Align.CENTER);
user3071284
  • 6,955
  • 6
  • 43
  • 57
Rakhiii
  • 49
  • 5

0 Answers0