Syntax:
new CanvasTextWrapper(HTMLCanvasElement, String [, Options]);
-
font(String) - text style that includes font size, family, etc. specified similarly to CSS font shorthand property
-
textAlign(String) - horizontal alignment that applies for each line
- "left"
- "center"
- "right"
-
verticalAlign(String) - vertical alignment that applies on a whole block of text
- "top"
- "middle"
- "bottom"
-
paddingX(Number) - horizontal padding in pixels set equally on both, left and right sides of the element
-
paddingY(Number) - vertical padding in pixels set equally on both, top and bottom sides of the element
-
fitParent(Boolean) - parameter that controls which element to fit
- true - fit canvas parent's width instead of canvas own width
- false - fit canvas width
-
lineBreak(String) - text split rule
- "auto" - text fills the element's width going to a new line on a whole word when no more space
- "word" - each next word will be placed on a new line
NOTE: if a single word is too long to fit the width with specified font size, it will be broken into as many lines as required on any letter without specific word breaking rule.