UNPKG

svg-in-png

Version:

export SVG into image, its work with recharts and any other image svg

9 lines (8 loc) 195 B
export function createImage( context: CanvasRenderingContext2D, image: HTMLImageElement, width: number, height: number ) { context.drawImage(image, -10, 50, width, height); }