在 GDI+ 中限制绘制图面

剪裁涉及将绘图限制在某个矩形或区域。 下图显示了剪裁到心形区域的字符串“Hello”。

Screenshot of a heart-shaped region with the text string Hello inside the heart.

按区域进行剪裁

可以从路径构建区域,而路径可以包含字符串的轮廓,因此可以使用轮廓文本进行剪裁。 下图显示了一组剪裁到文本字符串内部的同心省略号。

Screenshot of the text string Hello with a set of concentric ellipses clipped to the interior of the text.

若要使用剪裁进行绘制,请创建一个 Graphics 对象,设置其 Clip 属性,然后调用同一 Graphics 对象的绘图方法:

myGraphics.Clip = myRegion;
myGraphics.DrawLine(myPen, 0, 0, 200, 200);
myGraphics.Clip = myRegion
myGraphics.DrawLine(myPen, 0, 0, 200, 200)

另请参阅