# Is there a package for loading SVG files?

**URL:** https://discourse.julialang.org/t/is-there-a-package-for-loading-svg-files/54376
**Category:** General Usage
**Created:** [February 1, 2021, 2:28pm UTC](https://discourse.julialang.org/t/is-there-a-package-for-loading-svg-files/54376 "2021-02-01T14:28:00Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![mihalybaci](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mihalybaci/32/13528_2.png) [@mihalybaci](https://discourse.julialang.org/u/mihalybaci)
#### Post date: [February 1, 2021, 2:28pm UTC](https://discourse.julialang.org/t/is-there-a-package-for-loading-svg-files/54376/1 "2021-02-01T14:28:00Z")

</div>

Is there is a package for _loading_ SVG files? I have checked the usual suspects (Images, ImageMagick, FileIO, and ImageIO) and none of them provide `load`ing of SVG, just writing apparently.

---

<div class="post-metadata">

### Author: ![bicycle1885](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/bicycle1885/32/107_2.png) [@bicycle1885](https://discourse.julialang.org/u/bicycle1885)
#### Post date: [February 1, 2021, 3:02pm UTC](https://discourse.julialang.org/t/is-there-a-package-for-loading-svg-files/54376/2 "2021-02-01T15:02:34Z")

</div>

SVG is in the XML format. So you can use XML packages such as [EzXML.jl](https://github.com/JuliaIO/EzXML.jl).

---

<div class="post-metadata">

### Author: ![mihalybaci](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mihalybaci/32/13528_2.png) [@mihalybaci](https://discourse.julialang.org/u/mihalybaci)
#### Post date: [February 1, 2021, 5:07pm UTC](https://discourse.julialang.org/t/is-there-a-package-for-loading-svg-files/54376/3 "2021-02-01T17:07:44Z")

</div>

Thank you! I’ll look into that package.
