0

我有一张图像,我只想在其中添加一些随机线条。我对 c# 绘图功能不太熟悉。

有没有什么简单的方法可以在已经位图对象的不同位置添加 4-7 条不同长度的线?

4

1 回答 1

2

尝试这样的事情:

Random rnd = new Random();
Graphics g = Graphics.FromImage(bitmap);
for (int i=0; i<n; i++) {
    // calculate line start and end point here using the Random class:
    int x0 = rnd.Next(0, bitmap.Width);
    int y0 = rnd.Next(0, bitmap.Height);
    int x1 = rnd.Next(0, bitmap.Width);
    int y1 = rnd.Next(0, bitmap.Height);
    g.DrawLine(Pens.White, x0, y0, x1, x1);
}
于 2013-05-20T11:12:43.517 回答