flutter之Image

简介: flutter之Image

1 Image

Image是一个用于展示图片的组件。支持 JPEG、PNG、GIF、Animated GIF、WebP、Animated WebP、BMP 和 WBMP 等格式。

2 构造方法

Image:通过ImageProvider来加载图片
Image.asset:用来加载本地资源图片
Image.file:用来加载本地(File文件)图片
Image.network:用来加载网络图片
Image.memory:用来加载Uint8List资源(byte数组)图片

3 构造函数

Image({
     Key key,
     @required this.image,
     this.semanticLabel,
     this.excludeFromSemantics = false,
     this.width,
     this.height,
     this.color,
     this.colorBlendMode,
     this.fit,
     this.alignment = Alignment.center,
     this.repeat = ImageRepeat.noRepeat,
     this.centerSlice,
     this.matchTextDirection = false,
     this.gaplessPlayback = false,
     this.filterQuality = FilterQuality.low,
})

4 常用属性

4.1 width & height

指Image Widget的可显示区域的宽高(并非图片的宽高)

Image.asset(
        'lib/assets/sample/image.jpg',
        width: 200,
        height: 200,
),

4.2 fit

fit 设置图片的填充模式,具体由BoxFit实现

Image.asset(
        'lib/assets/sample/image.jpg',
        width: AppSize.width(200),
        height: AppSize.width(200),
        fit: BoxFit.cover,
),

4.3 color & colorBlendMode

这两个属性需要配合使用,对图片进行混合颜色处理

Image.asset(
      "lib/assets/sample/image.jpg",
      color: Colors.blue,
      colorBlendMode: BlendMode.saturation,
),

4.4 alignment

用来控制图片摆放的位置

Image.asset(
      "lib/assets/sample/image.jpg",
      repeat: ImageRepeat.repeat,
      alignment : Alignment.center,
),

4.5 repeat

用来设置图片重复显示(repeat-x水平重复,repeat-y垂直重复,repeat两个方向都重复,no-repeat默认情况不重复)

Image.asset(
      "lib/assets/sample/image.jpg",
      repeat: ImageRepeat.repeat,
),

4.6 centerSlice

设置图片内部拉伸,相当于在图片内部设置了一个.9图,但是需要注意的是,要在显示图片的大小大于原图的情况下才可以使用这个属性,要不然会报错

Image.asset(
      "lib/assets/sample/image.jpg",
      width: 400,
      height: 400,
      fit: BoxFit.contain,
      centerSlice: Rect.fromLTWH(10, 10, 10, 10),
),
相关文章
|
Dart Java
Flutter Image内存--强引用分析方法
概述 据了解,很多Flutter业务上线后都出现内存占用较高的问题,首当其冲的是 Image 内存占用过多。 Image 图片内存过高,可能由于 Flutter ImageCache 对内存缺房控制力导致,也有可能是被业务代码强引用,泄漏导致。如果 Image 被业务强引用,则调整 ImageCache 容量,增加 gc 次数都没有效果。 面对这种“强引用”的泄漏
2212 0
Flutter Image内存--强引用分析方法
|
3月前
|
缓存
Flutter Image从网络加载图片刷新、强制重新渲染
Flutter Image从网络加载图片刷新、强制重新渲染
112 1
|
缓存
【Flutter】Image 组件 ( cached_network_image 网络图片缓存插件 )(一)
【Flutter】Image 组件 ( cached_network_image 网络图片缓存插件 )(一)
774 0
【Flutter】Image 组件 ( cached_network_image 网络图片缓存插件 )(一)
|
存储 Android开发
Flutter控件之图片Image封装
Flutter中偏偏原生的控件,少了很多需要又常用的属性,比如宽高,比如内外边距,又比如点击事件,如果不采取封装,视图的结构会一层嵌套一层,徒增很多的冗余代码,所以,为了简洁代码,还有为了拓展原生组件没有的属性,就不得不进行一次简单的封装,使其在调用的时候,可以很方便的实现某些功能。
142 0
|
存储 缓存 编解码
探索Flutter_Image显示Webp逻辑
简介 最近探索了一下新增Flutter的Image widget对webp做一个stopAnimation的拓展的Api,顺便了解一下Image整个结构和对一些多帧图片的处理。 我们先看看Image的一个类图结构。
288 0
|
Web App开发
Flutter web问题:Failed to load network image
我的解决办法: flutter build web --release --web-renderer html flutter run --web-renderer html flutter run -d chrome --web-renderer html
337 0
Flutter web问题:Failed to load network image
|
Dart 开发者
【Flutter】Image 组件 ( 配置本地 gif 图片资源 | 本地资源加载 placeholder )(二)
【Flutter】Image 组件 ( 配置本地 gif 图片资源 | 本地资源加载 placeholder )(二)
289 0
【Flutter】Image 组件 ( 配置本地 gif 图片资源 | 本地资源加载 placeholder )(二)
【Flutter】Image 组件 ( 配置本地 gif 图片资源 | 本地资源加载 placeholder )(一)
【Flutter】Image 组件 ( 配置本地 gif 图片资源 | 本地资源加载 placeholder )(一)
448 0
【Flutter】Image 组件 ( 配置本地 gif 图片资源 | 本地资源加载 placeholder )(一)
|
缓存 Dart 开发者
【Flutter】Image 组件 ( cached_network_image 网络图片缓存插件 )(二)
【Flutter】Image 组件 ( cached_network_image 网络图片缓存插件 )(二)
564 0
【Flutter】Image 组件 ( cached_network_image 网络图片缓存插件 )(二)