Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Meaning of some Paint constants in Android

There are a few Paint constant in Android about which I couldn't find much info. Could anyone help me with a bit of explanation about those flags:

  • LINEAR_TEXT_FLAG
  • SUBPIXEL_TEXT_FLAG
  • FILTER_BITMAP_FLAG

Is 'subpixel' mode something close to ClearType or is it something altogether different?

like image 597
Albus Dumbledore Avatar asked Jan 19 '11 20:01

Albus Dumbledore


1 Answers

SUBPIXEL is indeed for sub-pixel antialiasing, which is currently not supported on Android. Setting this flag will have no effect. FILTER_BITMAP is used to apply bilinear filtering to bitmaps when they are transformed (scaled for instance.) It's usually a good idea to enable FILTER_BITMAP unless speed matters (much) more than quality. LINEAR_TEXT is used to draw text at a 64px text size with a scale factor set to your textSize/64.

like image 184
Romain Guy Avatar answered Oct 10 '22 15:10

Romain Guy