An open API service indexing awesome lists of open source software.

https://github.com/zakimohammed/pdfmake-getting-started

Getting Started with PDF Make
https://github.com/zakimohammed/pdfmake-getting-started

javascript pdfmake

Last synced: 17 days ago
JSON representation

Getting Started with PDF Make

Awesome Lists containing this project

README

          

# Getting Started with PDF Make

Exploring the PDF make documentation and jump starting with the code. 😇

### Dependencies
```

```

### Create Document Definition
```
const docDefinition = {
content: [
'CodeOmelet',
'Lorem ipsum dolor sit, amet consectetur adipisicing elit. Accusamus, mollitia!'
]
};
```

### Open PDF
```
pdfMake.createPdf(docDefinition).open({}, window);
```

### Print PDF
```
pdfMake.createPdf(docDefinition).print();
```

### Download PDF
```
pdfMake.createPdf(docDefinition).download('PDF Make');
```