3
我的應用程序中有base64編碼的JPG,我想在控制器中將該圖像呈現爲JPG格式。如何在Rails中渲染base64編碼的圖像?
我的應用程序中有base64編碼的JPG,我想在控制器中將該圖像呈現爲JPG格式。如何在Rails中渲染base64編碼的圖像?
我問這個問題後就馬上解決了。假設你有@image_data
以base64字符串:
send_data Base64.decode64(@image_data),
:type => 'image/jpeg', :disposition => 'inline'
以下是如何與通常的render
語法做到這一點:
render text: Base64.decode64(your_base_64_string),
content_type: 'image/jpeg'