mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-16 12:57:32 +08:00
21 lines
444 B
Elixir
21 lines
444 B
Elixir
defmodule LivebookWeb.Output.ImageComponent do
|
|
use LivebookWeb, :live_component
|
|
|
|
@impl true
|
|
def render(assigns) do
|
|
~H"""
|
|
<img
|
|
class="max-h-[500px]"
|
|
src={data_url(@content, @mime_type)}
|
|
alt="output image"
|
|
id={@id}
|
|
phx-hook="ImageOutput"
|
|
/>
|
|
"""
|
|
end
|
|
|
|
defp data_url(content, mime_type) do
|
|
image_base64 = Base.encode64(content)
|
|
["data:", mime_type, ";base64,", image_base64]
|
|
end
|
|
end
|