// gはGraphics, pathはGraphicsPath Font font = new Font("メイリオ", 26.25, FontStyle.Bold); Single sizeInPixels = font.SizeInPoints * g.DpiY / 72F; // ピクセル単位のサイズに変換 Single width = 5.0F;
path.AddString("印刷中", font.FontFamily, (Int32)font.Style, sizeInPixels, new PointF(10, 10), null); using (Pen pen = new Pen(Color.Black, width)) { path.Widen(pen); } g.FillPath(Brushes.Black, path);