Skip to content

Latest commit

 

History

History
34 lines (34 loc) · 898 Bytes

FIXME.md

File metadata and controls

34 lines (34 loc) · 898 Bytes
  1. Don't include every basic font object by default, only as used
%Context{used_fonts: HashSet.new()}
  1. Add more natural text output syntax. Instead of
{:ok, pid} = Gutenex.start_link
Gutenex.begin_text(pid)
  |> Gutenex.set_font("Helvetica", 48)
  |> Gutenex.text_position(40, 180)
  |> Gutenex.text_render_mode(:fill)
  |> Gutenex.write_text("Screen Images Simulated")
  |> Gutenex.end_text

How about:

{:ok, pid} = Gutenex.start_link
Gutenex.text(pid) do
  import Gutenex
  set_font("Helvetica", 48)
  text_position(40, 180)
  text_render_mode(:fill)
  write_text("Screen Images Simulated")
end

Or maybe a function:

{:ok, pid} = Gutenex.start_link
text_options = %{position: {40, 180}, font: {"Helvetica", 48}, render_mode: :fill}
Gutenex.text(pid, text_options, fn ->
  Gutenex.write_text(pid, "Screen Images Simulated")
end)

Who knows!