4Q-s-r-o / signature

Flutter plugin that creates a canvas for writing down a signature
MIT License
255 stars 85 forks source link

How to convert pngBytes to base64? #35

Closed NiroopNife closed 3 years ago

NiroopNife commented 3 years ago

I'm trying to save the signature to the Database, so i need to convert the signature which is current in pngbytes. But I need to show the saved image in a base64 format. So how to convert a pngbytes to base64?

ethael commented 3 years ago

Hi. First thing what google returns is the code snippet you can already use: https://stackoverflow.com/questions/15957427/how-do-i-encode-a-dart-string-in-base64

as you already have bytes, you can skip first line of the conversion (string->bytes)

Next time, please make some search effort before opening new issue. Thanks!