# Image File Type Conversions

**URL:** https://discourse.julialang.org/t/image-file-type-conversions/90554
**Category:** General Usage
**Tags:** question
**Created:** [November 20, 2022, 7:01pm UTC](https://discourse.julialang.org/t/image-file-type-conversions/90554 "2022-11-20T19:01:49Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![GameDungeon](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/gamedungeon/32/38609_2.png) [@GameDungeon](https://discourse.julialang.org/u/GameDungeon)
#### Post date: [November 20, 2022, 7:01pm UTC](https://discourse.julialang.org/t/image-file-type-conversions/90554/1 "2022-11-20T19:01:49Z")

</div>

Are there any good ways to convert between image file types? For example SVG to JPG, or even a simple PNG to JPG?

Edit: I guess with PNG to JPG I could just load the file and then save it. Not sure about SVG to other types though

---

<div class="post-metadata">

### Author: ![jd-foster](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jd-foster/32/35824_2.png) [@jd-foster](https://discourse.julialang.org/u/jd-foster)
#### Post date: [November 21, 2022, 1:57am UTC](https://discourse.julialang.org/t/image-file-type-conversions/90554/2 "2022-11-21T01:57:32Z")

</div>

For SVG specifically, there is [`Rsvg.jl`](https://github.com/lobingera/Rsvg.jl) for reading the SVG, which can be combined with Cairo for saving.

For other formats, you can try FileIO: [Home · FileIO](https://juliaio.github.io/FileIO.jl/stable/)
