import vcs
x = vcs.init()
fa = vcs.createfillarea()
fa.x = [.4,.6,.6,.4]
fa.y = [.4,.4,.6,.6]
fa.color="red"
x.plot(fa)
txt = vcs.createtext()
txt.string = "TRANSPARENT STRING"
txt.angle = -45
txt.x = .5
txt.y = .5
txt.halign="center"
txt.valign = "half"
txt.color = "blue"
txt.height = 35
x.plot(txt)
x.png("transp_text")