【问题标题】:How to apply a mask over a png image excluding the transparent Part in flutter如何在 png 图像上应用蒙版,不包括颤动中的透明部分
【发布时间】:2022-01-20 20:32:27
【问题描述】:

我想在图像的非透明部分上涂上绿色,尝试搜索图像处理库,以便我可以直接处理图像但找不到

【问题讨论】:

标签: flutter image image-manipulation


【解决方案1】:

为图片使用容器

Container(
            decoration: new BoxDecoration(
              color: const Color(0xff7c94b6),
              image: new DecorationImage(
                fit: BoxFit.cover,
                colorFilter: new ColorFilter.mode(Colors.green.withOpacity(0.2)),
                image: new NetworkImage(
                  'Imgurl',
                ),
              ),
            ),
          ),

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2019-04-17
    • 1970-01-01
    • 1970-01-01
    • 2010-12-17
    • 2018-02-16
    • 2020-05-13
    • 1970-01-01
    相关资源
    最近更新 更多