我尝试在红色背景上输出白色文字,但文本输出为黑色。据我所知,我可以调用fontColor
或(用我的CSS帽子思考)color
方法。
我的印象是fill
会处理这个问题,但似乎并非如此。
这是我的代码:
gm(600, 170, "#F15623")
.drawText(0, 0, 'from scratch', 'Center')
.fill('#FFFFFF')
.font( __dirname + '/../fonts/GothamCond-Medium.otf')
.fontSize( '100px' )
.write( filename, function (err) {
if (err) {
throw err;
} else {
callback( null );
}
});
答案 0 :(得分:11)
我需要在文本之前指定填充方法,以便填充该颜色。
gm(600, 170, "#F15623")
.fill('#FFFFFF')
.drawText(0, 0, 'from scratch', 'Center')
.font( __dirname + '/../fonts/GothamCond-Medium.otf')
.fontSize( '100px' )
.write( filename, function (err) {
if (err) {
throw err;
} else {
callback( null );
}
});