1.0.0 • Published 4 years ago
@automattic/text-to-picture v1.0.0
text-to-picture
Easily convert characters to a picture with aligned text.
Pure javascript, no native or external dependencies.
A text input "LS" could look like this:

Quickstart
It's simple.
npm i --save "text-to-picture@npm:@automattic/text-to-picture@latest"With async/await.
const textToPicture = require('text-to-picture')
const result = await textToPicture.convert({
text: 'LS'
})
const str = await result.getBase64()
console.log(str) // data:image/png;base64,iVBORw0KGgoA...
// useful for http servers
const buf = await result.getBuffer()
// http response object
response.send(buf) // <Buffer 89 50 4e 47 ...>With promises.
const textToPicture = require('text-to-picture')
textToPicture.convert({
text: 'LS'
}).then(result => {
return result.getBase64()
}).then(str => {
console.log(str) // data:image/png;base64,iVBORw0KGgoA...
}).catch(err => handle(err))API
TextToPicture.convert(options: Object)
options:
text: String- The text to write. Required.source: String|Object- String to a local file or Object:width: Number- Width of new image. default: 256height: Number- Height of new image. default: 256background: Number- Background in hex. example: 0xFF0000FF, default: black, transparent for pngs
size: String- Text size. Can be one of8, 16, 32, 64, 128. default:64color: String- Color. Can be'blackor'white'. default:'black'ext: String- File type.'jpeg','png'or'bmp'. default:'png',quality: String- Image quality between0and100. default:60customFont: String- Path to .fnt font.
returns: Object
getBase64(): Promise- Get base64 data urigetBuffer(): Promise- Get a node buffer (useful for http server)write(path: String): Promise- Write file to given path (with filename & extension)image: Jimp- the image Jimp object for special customisation.
TextToPicture.Jimp
The Jimp class.
1.0.0
4 years ago