Rails Convert Image To Base64

[Solved] Rails Convert Image To Base64 | Swift - Code Explorer | yomemimo.com
Question : rails convert image to base64

Answered by : lior

# in Ruby
@img_base64 = Base64.strict_encode64(your_content_here)
# views
<%= image_tag "data:image/jpg;base64, #{@img_base64}" %>

Source : | Last Update : Tue, 21 Dec 21

Answers related to rails convert image to base64

Code Explorer Popular Question For Swift