本文整理匯總了Golang中github.com/vizstra/vg.Context.SetFontSize方法的典型用法代碼示例。如果您正苦於以下問題:Golang Context.SetFontSize方法的具體用法?Golang Context.SetFontSize怎麽用?Golang Context.SetFontSize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/vizstra/vg.Context
的用法示例。
在下文中一共展示了Context.SetFontSize方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: draw
// draw draws the title and returns the height.
func (self *Title) draw(x, y, w, h float64, ctx vg.Context) float64 {
th := 0.0
name := self.Model.Title()
if len(name) > 0 {
th = self.FontSize + 16
// ctx.BeginPath()
// ctx.StrokeColor(color.RGBA{0, 50, 100, 25})
// ctx.StrokeWidth(1)
// ctx.LineCap(vg.ROUND)
// ctx.LineJoin(vg.ROUND)
// ctx.MoveTo(x, y+th)
// ctx.LineTo(x+1.5, y+th)
// ctx.LineTo(x+w+1.5, y+th)
// ctx.Stroke()
ctx.FillColor(color.RGBA{255, 251, 251, 255})
ctx.TextAlign(vg.ALIGN_LEFT | vg.ALIGN_MIDDLE)
ctx.SetFontSize(self.FontSize + 3)
ctx.FindFont(vg.FONT_DEFAULT)
ctx.WrappedText(x+10, y+self.FontSize, w, name)
}
return th
}