pdfme-graphic-schema
v1.0.0-alpha.3
Published
A TypeScript package supporting both browser and Node.js environments
Downloads
162
Readme
pdfme-graphic-schema
pdfme-graphic-schema is a package that provides a schema for defining and rendering graphics (image, svg, pdf) in PDF documents using the pdfme library.
Installation
yarn add pdfme-graphic-schemaUsage
In Node.js (CommonJS)
import { image } from 'pdfme-graphic-schema'
const viewer = new Viewer({
domContainer: domContainer,
...
plugins: {
text,
image, // use image plugin
},
})