diff options
Diffstat (limited to 'html/en/samples.html')
-rw-r--r-- | html/en/samples.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/html/en/samples.html b/html/en/samples.html index f5fad96..e58835c 100644 --- a/html/en/samples.html +++ b/html/en/samples.html @@ -145,7 +145,11 @@ local image = im.ImageCreate(500, 500, im.RGB, im.BYTE) local canvas = image:cdCreateCanvas() -- Creates a CD_IMAGERGB canvas canvas:Activate() +canvas:Background(cd.EncodeColor(255, 255, 255)) canvas:Clear() +fgcolor = cd.EncodeColor(255, 0, 0) -- red +fgcolor = cd.EncodeAlpha(fgcolor, 50) -- semi transparent +canvas:Foreground(fgcolor) canvas:Font("Times", cd.BOLD, 24) canvas:Text(100, 100, "Test") canvas:Line(0,0,100,100) |