Skip to content

Commit ee2b513

Browse files
committed
Reinstate priv_dir with fonts
1 parent 48f0da6 commit ee2b513

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

doc/src/img.erl

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ do() ->
1313
% Line and fillRectangle
1414

1515
egd:filledRectangle(Im, {20,20}, {180,180}, Red),
16-
egd:line(Im, {0,0}, {200,200}, Black),
16+
egd:line(Im, {0,0}, {200,200}, Black),
1717

1818
egd:save(egd:render(Im, png), "/home/egil/test1.png"),
19-
19+
2020
egd:filledEllipse(Im, {45, 60}, {55, 70}, Yellow),
2121
egd:filledEllipse(Im, {145, 60}, {155, 70}, Blue),
2222

@@ -26,7 +26,7 @@ do() ->
2626
X0 = 99,
2727
Y0 = 99,
2828

29-
Pts = [ { X0 + trunc(R*math:cos(A*math:pi()*2/360)),
29+
Pts = [ { X0 + trunc(R*math:cos(A*math:pi()*2/360)),
3030
Y0 + trunc(R*math:sin(A*math:pi()*2/360))
3131
} || A <- lists:seq(0,359,5)],
3232
lists:map(
@@ -37,14 +37,14 @@ do() ->
3737
egd:save(egd:render(Im, png), "/home/egil/test3.png"),
3838

3939
% Text
40-
Filename = filename:join([code:priv_dir(percept), "fonts", "6x11_latin1.wingsfont"]),
40+
Filename = filename:join([code:priv_dir(egd), "fonts", "6x11_latin1.wingsfont"]),
4141
Font = egd_font:load(Filename),
4242
{W,H} = egd_font:size(Font),
4343
String = "egd says hello",
4444
Length = length(String),
4545

4646
egd:text(Im, {round(100 - W*Length/2), 200 - H - 5}, Font, String, Black),
47-
47+
4848
egd:save(egd:render(Im, png), "/home/egil/test4.png"),
4949

5050
egd:destroy(Im).

priv/fonts/6x11_latin1.wingsfont

1.97 KB
Binary file not shown.

test/egd_SUITE.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ image_font(Config) when is_list(Config) ->
191191
Im = egd:create(W, H),
192192
Fgc = egd:color({0,130,0}),
193193

194-
Filename = filename:join([code:priv_dir(percept),"fonts","6x11_latin1.wingsfont"]),
194+
Filename = filename:join([code:priv_dir(egd),"fonts","6x11_latin1.wingsfont"]),
195195
Font = egd_font:load(Filename),
196196

197197
% simple text

0 commit comments

Comments
 (0)