Convert to a PNG image
Future<Uint8List> toPng() async { final image = await toImage(); final data = await image.toByteData(format: ui.ImageByteFormat.png); return data!.buffer.asUint8List(); }