File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
defmodule Mudbrick.ContentStream.Tf do
2
2
@ moduledoc false
3
- @ enforce_keys [ :font , :size ]
4
- defstruct [ :font , :size ]
3
+ @ enforce_keys [ :font_identifier , :size ]
4
+ defstruct [ :font_identifier , :size ]
5
5
6
6
defimpl Mudbrick.Object do
7
7
def to_iodata ( tf ) do
8
8
[
9
- Mudbrick.Object . to_iodata ( tf . font . resource_identifier ) ,
9
+ Mudbrick.Object . to_iodata ( tf . font_identifier ) ,
10
10
" " ,
11
11
to_string ( tf . size ) ,
12
12
" Tf"
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ defmodule Mudbrick.TextBlock.Output do
24
24
} = tb
25
25
) do
26
26
tl = % TL { leading: tb . leading }
27
- tf = % Tf { font : font , size: font_size }
27
+ tf = % Tf { font_identifier : font . resource_identifier , size: font_size }
28
28
29
29
% __MODULE__ { position: position , font: font , font_size: font_size }
30
30
|> end_block ( )
@@ -192,9 +192,9 @@ defmodule Mudbrick.TextBlock.Output do
192
192
193
193
defp with_font ( output , op , part ) do
194
194
output
195
- |> add ( % Tf { font : output . font , size: output . font_size } )
195
+ |> add ( % Tf { font_identifier : output . font . resource_identifier , size: output . font_size } )
196
196
|> add ( op )
197
- |> add ( % Tf { font : part . font , size: part . font_size } )
197
+ |> add ( % Tf { font_identifier : part . font . resource_identifier , size: part . font_size } )
198
198
end
199
199
200
200
defp colour ( output , { r , g , b } ) do
You can’t perform that action at this time.
0 commit comments