Skip to main content
Inspiring
March 28, 2012
Answered

Textfield properties - differences in Anti-alias

  • March 28, 2012
  • 1 reply
  • 2977 views

Can anyone explain what's the differences and usage of Anti-alias:

1) device fonts

2) bitmap-text

3) Anti-alias for animation

4) Anti-alias for readability

This topic has been closed for replies.
Correct answer sinious

Anti-aliasing, basically, removes 'jaggies' and 'pixelation' by smoothing out vectors. So on things like text, which are vectors, the text looks smooth.

Device fonts uses the fonts of the users operating system and are not anti-aliased. So they will appear jagged and pixely. However people can take advantage of making sure characters (especially asian multi-byte) are available and do not need to be embedded into flash saving you lots of file size.

Anti-alias for animation is a less expensive, easier to render but softer looking version of anti-aliasing. Good for non-text vectors. They call it animation because it's easier on the processor to render.

Anti-alias for readability adds a contrast bump to edges making text look sharper, thus more readable.

The bitmap-text isn't vector. It saves the text as bitmaps and typically you'd only do this if you intend to use bitmaps. You choose the size of the font and then it's not really good to use alternate sizes for fonts other than what you select. This is useful for games who sometimes don't want the overhead of rendering the vectors for text. Instead the text is just a bitmap and is easier to render.

1 reply

sinious
siniousCorrect answer
Legend
March 28, 2012

Anti-aliasing, basically, removes 'jaggies' and 'pixelation' by smoothing out vectors. So on things like text, which are vectors, the text looks smooth.

Device fonts uses the fonts of the users operating system and are not anti-aliased. So they will appear jagged and pixely. However people can take advantage of making sure characters (especially asian multi-byte) are available and do not need to be embedded into flash saving you lots of file size.

Anti-alias for animation is a less expensive, easier to render but softer looking version of anti-aliasing. Good for non-text vectors. They call it animation because it's easier on the processor to render.

Anti-alias for readability adds a contrast bump to edges making text look sharper, thus more readable.

The bitmap-text isn't vector. It saves the text as bitmaps and typically you'd only do this if you intend to use bitmaps. You choose the size of the font and then it's not really good to use alternate sizes for fonts other than what you select. This is useful for games who sometimes don't want the overhead of rendering the vectors for text. Instead the text is just a bitmap and is easier to render.

ZainuuAuthor
Inspiring
March 29, 2012

Thanks very helpful

sinious
Legend
March 29, 2012

Welcome