There was an error while loading. Please reload this page.
1 parent 49fbb63 commit eed1995Copy full SHA for eed1995
1 file changed
src/exporters/download.js
@@ -14,6 +14,7 @@ import { createBackground } from '../utils/index.js';
14
* @returns {Promise<void>}
15
*/
16
export async function download(url, options) {
17
+ options.dpr = 1;
18
if (options.format === 'svg') {
19
const blob = await toBlob(url, { ...options, type: 'svg' });
20
const objectURL = URL.createObjectURL(blob);
0 commit comments