To add SVG support, import the extension library:
implementation("io.coil-kt:coil-svg:2.5.0")
And add the decoder to your component registry when constructing your ImageLoader
:
val imageLoader = ImageLoader.Builder(context)
.components {
add(SvgDecoder.Factory())
}
.build()
The ImageLoader
will automatically detect and decode any SVGs. Coil detects SVGs by looking for the <svg
marker in the first 1 KB of the file, which should cover most cases. If the SVG is not automatically detected, you can set the Decoder
explicitly for the request:
imageView.load("/path/to/svg") {
decoderFactory { result, options, _ -> SvgDecoder(result.source, options) }
}