Reputation: 518
In what formats can image be saved in database else than blob ? I know we can save it as blob type .The easiest way . But is there any other way possible . becuase using php in every case we convert the image into a string . than save it .
SO someone with a different answer ?
Upvotes: 0
Views: 301
Reputation: 154
You could covert them to Base64 and store them as strings. However, the practice of storing images in DB is not something that is usually done for several reasons:
Hope this helps.
Upvotes: 4