用GDI+怎么实现绘制倾斜文字

Q:用GDI+怎么实现绘制倾斜文字
A:Graphics g = this.CreateGraphics();
g.RotateTransform(30f);
g.DrawString("倾斜ABCabc", this.Font, SystemBrushes.WindowText, 10f, 10f);
g.ResetTransform();
g.Dispose();
g = null;

posted on 2004-10-14 16:23  LEE  阅读(671)  评论(0编辑  收藏  举报

导航