**在图片上绘制文字,设置了文字的颜色,为什么文字外边有轮廓线,该如何去掉?另外如何设置字体的粗细**
```
c.SetFontSize(52)
c.SetSrc(image.NewUniform(color.RGBA{37,37,37, 1}))
pt3 := freetype.Pt(175, 640)
·fmt.Printf("标题%v\n", imgItem.Title)·
fmt.Printf("原价ZkFinalPrice=%v,优惠券价格CouponAmount=%v,成交量Volume=%v\n", imgItem.ZkFinalPrice, imgItem.CouponAmount, imgItem.Volume)
zkFinalPriice, _ := strconv.ParseFloat(imgItem.ZkFinalPrice, 64)
CouponAmount := float64(imgItem.CouponAmount)
truePrice := zkFinalPriice - CouponAmount
var text4 = []string{strconv.FormatFloat(truePrice, 'f', -1,64)}
for _, s := range text4 {
_, err = c.DrawString(s, pt3)
if err != nil {
log.Println(err)
return "", err
}
pt.Y += c.PointToFixed(12 * 1.5)
}
```
![1290.png](https://static.studygolang.com/190903/10663ea032f806df6496317119f7edd4.png)
有疑问加站长微信联系(非本文作者))