chrome安装插件提示image decode failed

今天在安装chrome插件时,发现插件列表中的所有图片均无法加载,点击安装时,页面提示image decode failed,在网上搜索了一个方法,成功解决,感觉很神奇,解决方法如下:

删除C:\Windows\System32\drivers\etc下的hosts和hosts.dz文件或者剪切到别处,问题解决

要将 CameraImage 转换为 Flutter 中用于显示的图像,需要使用 ImageConverter 将其转换为 Uint8List,并使用 decodeImage 将其解码为 Image。以下是一个示例代码片段,展示了如何使用 decodeImage 操作 CameraImage: ```dart import 'dart:typed_data'; import 'package:flutter/material.dart'; import 'package:camera/camera.dart'; import 'package:image/image.dart' as Img; class CameraPreviewWidget extends StatelessWidget { final CameraImage image; const CameraPreviewWidget({ Key key, @required this.image, }) : super(key: key); @override Widget build(BuildContext context) { final Image img = Image.memory( Uint8List.view( image.planes[0].bytes.buffer, image.planes[0].bytes.offsetInBytes, image.planes[0].bytes.length, ), ); return img; } Future<Img.Image> convertCameraImage(CameraImage image) async { final int width = image.width; final int height = image.height; final Uint8List bytes = _concatenatePlanes(image.planes); return Img.decodeImage(bytes); } Uint8List _concatenatePlanes(List<Plane> planes) { final Completer<List<Uint8List>> completer = Completer<List<Uint8List>>(); final List<Uint8List> bytesList = <Uint8List>[]; int bytes = 0; for (int i = 0; i < planes.length; i++) { bytes += planes[i].bytes.length; bytesList.add(planes[i].bytes); } final Uint8List concatenatedBytes = Uint8List(bytes); int index = 0; for (int i = 0; i < planes.length; i++) { concatenatedBytes.setRange(index, index + planes[i].bytes.length, planes[i].bytes); index += planes[i].bytes.length; } return concatenatedBytes; } } ``` 在这个示例中,我们首先使用一个 Uint8List.view 将 CameraImage 中的字节拼接在一起,然后使用 decodeImage 将其解码为 Image。注意,在上面的代码中,我们使用了一个名为 _concatenatePlanes 的辅助函数,将不同平面的字节拼接在一起。 希望这可以帮助你解决问题!
评论 11
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值