-
Notifications
You must be signed in to change notification settings - Fork 14
Text Baseline
Andy Gill edited this page Jun 18, 2014
·
4 revisions
{-# LANGUAGE OverloadedStrings #-}
module Main where
import Graphics.Blank
main = blankCanvas 3000 $ \ context -> do
send context $ do
(width,height) <- size
let x = width / 2
let y = height / 2
font "30pt Calibri"
textAlign "center"
textBaseline "middle"
fillStyle "blue"
fillText("Hello World!", x, y)