Bitmap.prototype._drawTextBody = function(text, tx, ty, maxWidth) {
var context = this._context;
var gradient= context.createLinearGradient(0, 0, 0, 32);
gradient.addColorStop(0, "#fff");
gradient.addColorStop(0.6, this.textColor);
context.save();
context.fillStyle = gradient;
context.fillText(text, tx, ty, maxWidth);
context.restore();
this._setDirty();
};
Bitmap.prototype._drawTextBody = function(text, tx, ty, maxWidth) {
var context = this._context;
var gradient= context.createLinearGradient(0, 0, 0, 32);
gradient.addColorStop(0, "#fff");
gradient.addColorStop(0.6, this.textColor);
context.save();
context.fillStyle = gradient;
context.fillText(text, tx, ty, maxWidth);
context.restore();
this._setDirty();
};