Skip to content

Instantly share code, notes, and snippets.

@PlugFox
Created August 6, 2025 09:53
Show Gist options
  • Select an option

  • Save PlugFox/337ff350c6346bb2f6070610fcaef60a to your computer and use it in GitHub Desktop.

Select an option

Save PlugFox/337ff350c6346bb2f6070610fcaef60a to your computer and use it in GitHub Desktop.
Flutter PictureRecorder & Canvas
final recorder = ui.PictureRecorder();
final canvas = Canvas(recorder);
// ...
final picture = recorder.endRecording();
final image = picture.toImage(outWidth, outHeight);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment