@@ -13,10 +13,10 @@ do() ->
13
13
% Line and fillRectangle
14
14
15
15
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 ),
17
17
18
18
egd :save (egd :render (Im , png ), " /home/egil/test1.png" ),
19
-
19
+
20
20
egd :filledEllipse (Im , {45 , 60 }, {55 , 70 }, Yellow ),
21
21
egd :filledEllipse (Im , {145 , 60 }, {155 , 70 }, Blue ),
22
22
@@ -26,7 +26,7 @@ do() ->
26
26
X0 = 99 ,
27
27
Y0 = 99 ,
28
28
29
- Pts = [ { X0 + trunc (R * math :cos (A * math :pi ()* 2 / 360 )),
29
+ Pts = [ { X0 + trunc (R * math :cos (A * math :pi ()* 2 / 360 )),
30
30
Y0 + trunc (R * math :sin (A * math :pi ()* 2 / 360 ))
31
31
} || A <- lists :seq (0 ,359 ,5 )],
32
32
lists :map (
@@ -37,14 +37,14 @@ do() ->
37
37
egd :save (egd :render (Im , png ), " /home/egil/test3.png" ),
38
38
39
39
% 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" ]),
41
41
Font = egd_font :load (Filename ),
42
42
{W ,H } = egd_font :size (Font ),
43
43
String = " egd says hello" ,
44
44
Length = length (String ),
45
45
46
46
egd :text (Im , {round (100 - W * Length / 2 ), 200 - H - 5 }, Font , String , Black ),
47
-
47
+
48
48
egd :save (egd :render (Im , png ), " /home/egil/test4.png" ),
49
49
50
50
egd :destroy (Im ).
0 commit comments