Guest User

Untitled

a guest
Jul 16th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Paint text = new Paint();
  2. text.setAntiAlias(false);
  3. text.setFilterBitmap(false);
  4. text.setDither(false);
  5. text.setFakeBoldText(false);
  6. text.setLinearText(false);
  7. text.setTextSize(10);
  8.  
  9. // Scale the canvas we draw on
  10. matrix = c.getMatrix();
  11. matrix.reset();
  12. matrix.postTranslate(0, 0);
  13. matrix.postScale(10,10);
  14. c.setMatrix(matrix);
  15. c.drawText("ABCabc", 0, 10, text);
  16.  
  17. text.setTextScaleX(5);
Add Comment
Please, Sign In to add comment