How to save a Flutter canvas as a bitmap image? -
i have flutter canvas , , i'd save canvas bitmap image (e.g. png, common bitmap format do). what's best way bits out of canvas, converted bitmap image format?
thanks much!
- create
picturerecorder
. - create
canvas
picturerecorder
, draw stuff. - call
endrecording()
onpicturerecorder
picture
. - call
toimage()
onpicture
. - call
tobytedata()
onimage
. oops, isn't implemented yet. filed issue.
Comments
Post a Comment