UNPKG

@tomatrow/pdf-to-png-converter

Version:

Node.js utility to convert PDF file/buffer pages to PNG files/buffers with no native dependencies.

10 lines (9 loc) 302 B
export interface CanvasContext { canvas?: any; context?: any; } export interface NodeCanvasFactory { create(width: number, height: number): CanvasContext; reset(canvasAndContext: CanvasContext, width: number, height: number): void; destroy(canvasAndContext: CanvasContext): void; }