Image File Type Conversions

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

For SVG specifically, there is Rsvg.jl for reading the SVG, which can be combined with Cairo for saving.

For other formats, you can try FileIO: Home ยท FileIO