mirror of
https://github.com/alibaba/GCanvas.git
synced 2025-12-08 17:36:42 +00:00
26 lines
876 B
JavaScript
26 lines
876 B
JavaScript
const { createCanvas, Image } = require('../export');
|
|
const canvas = createCanvas(400, 267);
|
|
const ctx = canvas.getContext('2d');
|
|
|
|
|
|
ctx.globalAlpha = 1
|
|
ctx.font = 'normal 16px Impact'
|
|
|
|
ctx.textBaseline = 'top'
|
|
|
|
// Note this demo depends node-canvas being installed with pango support,
|
|
// and your system having installed fonts supporting the glyphs.
|
|
|
|
ctx.fillStyle = '#000'
|
|
ctx.fillText('English: Some text in Impact.', 10, 10)
|
|
ctx.fillText('Japanese: 図書館の中では、静かにする。', 10, 30)
|
|
ctx.fillText('Arabic: اللغة العربية هي أكثر اللغات تحدثا ضمن', 10, 50)
|
|
ctx.fillText('Korean: 모타는사라미 못하는 사람이', 10, 70)
|
|
|
|
const fs = require('fs')
|
|
const path = require('path')
|
|
const out = fs.createWriteStream(path.join(__dirname, "..") + '/pango-glyphs.png');
|
|
var stream = canvas.createPNGStream();
|
|
stream.pipe(out);
|
|
|