转换矩阵C#

时间:2009-12-12 17:03:31

标签: c# graphics matrix transformation

圣诞节快到了,我有意发送电卡(小程序)。像下雪一样的东西会很好。但它有点无聊,一些不错的额外效果会很好。然后我找到了这个小小的flash例子。 http://wonderfl.net/code/71344f9a655053d9f793a32c68f00921c67f1977

但我不知道如何将这些行(47-49)转换为C#。

this._forceMap = new BitmapData(465, 465, false, 0x0); 
this._forceMap.draw(tf, tf.transform.matrix); 
this._forceMap.applyFilter(this._forceMap, 
                           this._forceMap.rect, 
                           new Point(0, 0), 
                           new BlurFilter(8, 8));

1 个答案:

答案 0 :(得分:0)

如果自动调整大小的值为“left”且文本字段行类型在文本属性检查器中设置为“多行”,则文本字段会扩展或收缩其右侧和底部以适合所有包含的文本。

  1. tf.autoSize = TextFieldAutoSize.LEFT;
  2. tf.text ='Wonderfl !!';
  3. tf.x =(465 - tf.width)/ 2; // tf.width = textfield.width
  4. tf.y =(465 - tf.height)/ 2; // tf.height = textfield.height
  5. x = paddingleft y = paddingtop