Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 1.4 KB

svg.md

File metadata and controls

50 lines (35 loc) · 1.4 KB

SVG

Sketch 支持解码 SVG 静态图片,由 SvgBitmapDecoder 提供支持

注册

使用 SvgBitmapDecoder 需要先导入 sketch-svg 模块

然后在初始化 Sketch 时通过 components() 方法注册,这样所有的 ImageRequest 都可以使用,如下:

class MyApplication : Application(), SketchFactory {

    override fun createSketch(): Sketch {
        return Sketch.Builder(this).apply {
            components {
                addBitmapDecoder(SvgBitmapDecoder.Factory())
            }
        }.build()
    }
}

或者在显示图片时只给当前 ImageRequest 注册,这样就只有当前 ImageRequest 可以使用,如下:

imageView.displayImage("https://www.example.com/image.svg") {
    components {
        addBitmapDecoder(SvgBitmapDecoder.Factory())
    }
}

配置

DisplayRequestLoadRequest 支持一些 svg 相关的配置,如下:

imageView.displayImage("https://www.example.com/image.svg") {
    svgBackgroundColor(Color.WHITE)
}