Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 1.16 KB

svg_zh.md

File metadata and controls

38 lines (24 loc) · 1.16 KB

SVG

翻译:English

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

安装组件

${LAST_VERSION}: Download (不包含 'v')

implementation("io.github.panpf.sketch4:sketch-svg:${LAST_VERSION}")

Important

sketch-svg 模块支持自动注册组件,有关组件注册的详细内容请查看文档:《注册组件》

配置

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

ImageRequest(context, "https://www.example.com/image.svg") {
    svgBackgroundColor(Color.WHITE)
    svgCss("...")    // Only Android 
}