Files
docx-js/demo/52-japanese.ts

39 lines
942 B
TypeScript
Raw Permalink Normal View History

2020-05-06 02:13:25 +01:00
// Japanese text - Need to use a Japanese font
2023-06-05 00:33:43 +01:00
2020-05-06 02:13:25 +01:00
import * as fs from "fs";
2023-06-05 00:33:43 +01:00
import { Document, HeadingLevel, Packer, Paragraph } from "docx";
2020-05-06 02:13:25 +01:00
const doc = new Document({
styles: {
paragraphStyles: [
{
id: "Normal",
name: "Normal",
basedOn: "Normal",
next: "Normal",
quickFormat: true,
run: {
font: "MS Gothic",
},
},
],
},
2021-03-19 20:53:56 +00:00
sections: [
{
children: [
new Paragraph({
text: "KFCを食べるのが好き",
heading: HeadingLevel.HEADING_1,
}),
new Paragraph({
text: "こんにちは",
}),
],
},
2020-05-06 02:13:25 +01:00
],
});
Packer.toBuffer(doc).then((buffer) => {
fs.writeFileSync("My Document.docx", buffer);
});