'Convert Image to Uint8List in Flutter

How to Convert Image to Uint8List in Flutter

I have Image it not from asset or file I want to convert Image to Uint8List



Solution 1:[1]

Something like this could work.

final data = await image.toByteData();
final result = data.buffer.asUint8List();

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 user18309290