fuzhenn / node-svg2img

A high-performance in-memory convertor to convert svg to png/jpeg images for Node.
MIT License
160 stars 37 forks source link

Fix: Images with external urls are not loaded #83

Open dkyeremeh opened 1 year ago

dkyeremeh commented 1 year ago

node-canvas was able to load images with external urls, but @resvg/resvg-js does not do so automatically. This PR intends to close the gap

  1. Preloads images with external urls before resvg renders the svg
  2. Allows images to point to external svg images as well
yisibl commented 1 year ago

Thanks for your contribution, need to add test cases.