1.18.0 • Published 4 years ago

@pencil.js/text v1.18.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Text

Text writing.

Text example

Installation

npm install @pencil.js/text

Examples

import Text from "@pencil.js/text";

const position = [100, 200];
const options = {
    font: "comic-sans",
    fontSize: 42
};
const message = new Text(position, "Hellow 😺", options);

// Change the text
message.text = "Henlo 🐶";

// Can be use to preload a bunch of fonts
Text.load([url1, url2, url3]).then(() => {
    console.log("Fonts ready");
});

Be aware this example overrides Javascript's Text global. Prefer another name for the import if you have collision.

import PText from "@pencil.js/text";

TextOptions

Inherit from ComponentOptions.

NameTypeDefaultComment
fontString"sans-serif"Font to use (can be a URL)
fontSizeNumber20Size of the text in pixels
alignStringText.alignments.startText horizontal alignment (use the origin option to move the text)
boldBooleanfalseUse bold font-weight
italicBooleanfalseUse italic font-style
underscoreBooleanfalseDraw a line under the text
lineHeightNumber1Ratio of line height (1 is normal, 2 is twice the space)
1.18.0

4 years ago

1.17.0

4 years ago

1.16.0

4 years ago

1.15.0

4 years ago

1.14.0

4 years ago

1.13.1

4 years ago

1.13.0

4 years ago

1.12.0

5 years ago

1.11.0

5 years ago

1.10.2

5 years ago

1.10.1

5 years ago

1.10.0

5 years ago

1.9.2

5 years ago

1.9.0

5 years ago

1.8.0

5 years ago

1.7.0

5 years ago

1.6.6

5 years ago

1.6.5

5 years ago

1.6.4

5 years ago

1.6.3

5 years ago

1.6.2

5 years ago

1.6.1

5 years ago

1.6.0

5 years ago

1.5.0

5 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.1

5 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.2

6 years ago

1.0.0

6 years ago

0.9.2

6 years ago

0.9.1

6 years ago

0.8.3

6 years ago

0.8.2

6 years ago

0.8.1

6 years ago

0.8.0

6 years ago

0.7.1

6 years ago

0.7.0

6 years ago

0.6.0

6 years ago

0.5.0

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.3.0

6 years ago

0.2.0

6 years ago