UNPKG

svg-in-png

Version:

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

12 lines (11 loc) 256 B
export function createwhiteBoard( context: CanvasRenderingContext2D, width: number, height: number, color: string ) { context.beginPath(); context.rect(0, 0, width, height + 50); context.fillStyle = color; context.fill(); }