##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: October 2016 # Modified: 2016-10-03/22:49-0400 ##+ # # DrawString.icn, demonstrate a boxed string # procedure main() w := open("DrawString", "g", "size=162,30", "linestyle=solid", "canvas=hidden") Font(w, "Liberation Mono") text := "Important message" fh := WAttrib(w, "fheight") tw := TextWidth(w, text) Fg(w, "purple") DrawString(w, 10, 20, text) Fg(w, "black") DrawRectangle(w, 5, 5, tw + 8, fh + 6) WSync(w) WriteImage(w, "../images/DrawString.png") close(w) end