(canvas: HTMLCanvasElement, type: string = 'image/png')
| 72 | * 将 canvas 转换为 data URL |
| 73 | */ |
| 74 | export function canvasToDataURL(canvas: HTMLCanvasElement, type: string = 'image/png'): string { |
| 75 | return canvas.toDataURL(type) |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * 将 data URL 转换为 blob(避免 CSP 问题) |
no outgoing calls
no test coverage detected