Text CreateJs如何控制setTransform

Text CreateJs如何控制setTransform,text,createjs,Text,Createjs,我有以下代码负责呈现文本。但目前文本是水平显示的,任何帮助都可以使文本垂直 this.shape_10 = new cjs.Text("Super", "bold 17px Arial", "#FFA632"); this.shape_10.lineHeight = 8; this.shape_10.lineWidth = 13; this.shape_10.setTransform(-1.5, -9); 90属于线下旋转90度

我有以下代码负责呈现文本。但目前文本是水平显示的,任何帮助都可以使文本垂直

       this.shape_10 = new cjs.Text("Super", "bold 17px Arial", "#FFA632");
        this.shape_10.lineHeight = 8;
        this.shape_10.lineWidth = 13;
       this.shape_10.setTransform(-1.5, -9);

90属于线下旋转90度

   this.shape_10 = new cjs.Text("Super", "bold 17px Arial", "#FFA632");
   this.shape_10.lineHeight = 8;
   this.shape_10.lineWidth = 13;
   this.shape_10.setTransform(25, -118, 1.0, 1.0, 90, 0, 0, -30, 1.0);