
C# GDI+
highplayer
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Windows窗体Paint()事件
<br />当我们在一个windows窗体作图,在窗体的构造函数中写如下代码<br />public Form1() { InitializeComponent(); Graphics g = this.CreateGraphics(); this.Show(); Pen p1 = new Pen(Color.Blue); g.DrawEllipse(p1,原创 2010-12-25 20:46:00 · 10858 阅读 · 1 评论 -
一个图片添加水印的类
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Collections; using System.Drawing; using System.Drawing.Drawing2D; using Sys转载 2012-03-26 18:56:27 · 1753 阅读 · 0 评论