C#中GraphicsPath的AddString方法用法实例
更新时间:2015年06月12日 14:49:25 作者:zhuzhao
这篇文章主要介绍了C#中GraphicsPath的AddString方法用法,实例分析了AddString方法添加字符串的相关使用技巧,需要的朋友可以参考下
本文实例讲述了C#中GraphicsPath的AddString方法用法。分享给大家供大家参考。具体如下:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Drawing.Drawing2D; namespace advanced_drawing { public partial class Form14 : Form { public Form14() { InitializeComponent(); } private void Form14_Paint(object sender, PaintEventArgs e) { // Create a GraphicsPath object. GraphicsPath myPath = new GraphicsPath(); // Set up all the string parameters. string stringText = "Sample Text"; FontFamily family = new FontFamily("Arial"); int fontStyle = (int)FontStyle.Italic; int emSize = 26; Point origin = new Point(20, 20); StringFormat format = StringFormat.GenericDefault; // Add the string to the path. myPath.AddString(stringText, family, fontStyle, emSize, origin, format); //Draw the path to the screen. e.Graphics.FillPath(Brushes.Black, myPath); } } }
希望本文所述对大家的C#程序设计有所帮助。
相关文章
C#使用iTextSharp设置PDF所有页面背景图功能实例
这篇文章主要介绍了C#使用iTextSharp设置PDF所有页面背景图功能,实例分析了C#使用iTextSharp设置PDF页面背景图的实现方法,具有一定参考借鉴价值,需要的朋友可以参考下2015-07-07vista和win7在windows服务中交互桌面权限问题解决方法:穿透Session 0 隔离
服务(Service)对于大家来说一定不会陌生,它是Windows 操作系统重要的组成部分。我们可以把服务想像成一种特殊的应用程序,它随系统的“开启~关闭”而“开始~停止”其工作内容,在这期间无需任何用户参与2016-04-04C#基于Twain协议调用扫描仪,设置多图像输出模式(Multi image output)
这篇文章主要介绍了C#基于Twain协议调用扫描仪,设置多图像输出模式(Multi image output)的方法,帮助大家更好的理解和使用c#,感兴趣的朋友可以了解下2021-01-01
最新评论