qq15725 / modern-screenshot

📸 Quickly generate image from DOM node using HTML5 canvas and SVG
https://toolpkg.com/html-to-image
MIT License
504 stars 36 forks source link

chrome 和 Firefox 不同平台的截图性能 #40

Closed wuyafeiya closed 1 year ago

wuyafeiya commented 1 year ago

相同的网络环境 相同的代码片段 截图执行时间 在Firefox要等很久

截屏2023-08-14 17 56 50

环境

执行时间

qq15725 commented 1 year ago

可以通过 fixSvgXmlDecode 关闭

domToPng({
  features: {
    fixSvgXmlDecode: false,
  },
})

或者查看为什么要这样做

https://github.com/bubkoo/html-to-image/issues/420#issuecomment-1667079108

wuyafeiya commented 1 year ago

谢谢 性能得到了一些优化 但是还是比不过chrome 但是已经可以满足需求 感谢