DEV Community

Discussion on: Storing Images as Blob

Collapse
 
heinkozin profile image
HeinKoZin

How to store in database and is it slow?

Collapse
 
victorytuduo profile image
Victory Tuduo

You can store the base64 data in your database and read it from there. You just need to stringify it when storing it then parse it when reading from your db. Its pretty fast.

Collapse
 
heinkozin profile image
HeinKoZin

Thanks bro☺️

Thread Thread
 
victorytuduo profile image
Victory Tuduo

glad to help