原文: http://zetcode.com/gui/gtksharp/drawing/

在 GTK# 编程教程的这一部分中,我们将使用 Cairo 库进行一些绘制。

Cairo 是用于创建 2D 矢量图形的库。 我们可以使用它来绘制自己的小部件,图表或各种效果或动画。

简单绘图

描边操作绘制形状的轮廓,填充操作填充形状的内部。 接下来,我们将演示这两个操作。

simpledrawing.cs

  1. using Gtk;
  2. using Cairo;
  3. using System;
  4. class SharpApp : Window {
  5. public SharpApp() : base("Simple drawing")
  6. {
  7. SetDefaultSize(230, 150);
  8. SetPosition(WindowPosition.Center);
  9. DeleteEvent += delegate { Application.Quit(); };;
  10. DrawingArea darea = new DrawingArea();
  11. darea.ExposeEvent += OnExpose;
  12. Add(darea);
  13. ShowAll();
  14. }
  15. void OnExpose(object sender, ExposeEventArgs args)
  16. {
  17. DrawingArea area = (DrawingArea) sender;
  18. Cairo.Context cr = Gdk.CairoHelper.Create(area.GdkWindow);
  19. cr.LineWidth = 9;
  20. cr.SetSourceRGB(0.7, 0.2, 0.0);
  21. int width, height;
  22. width = Allocation.Width;
  23. height = Allocation.Height;
  24. cr.Translate(width/2, height/2);
  25. cr.Arc(0, 0, (width < height ? width : height) / 2 - 10, 0, 2*Math.PI);
  26. cr.StrokePreserve();
  27. cr.SetSourceRGB(0.3, 0.4, 0.6);
  28. cr.Fill();
  29. ((IDisposable) cr.Target).Dispose();
  30. ((IDisposable) cr).Dispose();
  31. }
  32. public static void Main()
  33. {
  34. Application.Init();
  35. new SharpApp();
  36. Application.Run();
  37. }
  38. }

在我们的示例中,我们将绘制一个圆并将其用纯色绘制。

  1. gmcs -pkg:gtk-sharp-2.0 -r:/usr/lib/mono/2.0/Mono.Cairo.dll simple.cs

这是我们编译示例的方式。

  1. DrawingArea darea = new DrawingArea();

我们将在DrawingArea小部件上进行绘制操作。

  1. darea.ExposeEvent += OnExpose;

所有绘图都是通过我们插入ExposeEvent的方法完成的。

  1. DrawingArea area = (DrawingArea) sender;
  2. Cairo.Context cr = Gdk.CairoHelper.Create(area.GdkWindow);

我们从绘图区域的GdkWindow创建Cairo.Context对象。 上下文是用于在所有Drawable对象上绘制的对象。

  1. cr.LineWidth = 9;

我们将线条的宽度设置为 9 像素。

  1. cr.SetSourceRGB(0.7, 0.2, 0.0);

我们将颜色设置为深红色。

  1. int width, height;
  2. width = Allocation.Width;
  3. height = Allocation.Height;
  4. cr.Translate(width/2, height/2);

我们得到绘图区域的宽度和高度。 我们将原点移动到窗口的中间。

  1. cr.Arc(0, 0, (width < height ? width : height) / 2 - 10, 0, 2*Math.PI);
  2. cr.StrokePreserve();

我们绘制一个圆形的外部形状。 StrokePreserve()根据当前的线宽,线连接,线帽和笔划线设置描边当前路径。 与Stroke()不同,它在 cairo 上下文中保留路径。

  1. cr.SetSourceRGB(0.3, 0.4, 0.6);
  2. cr.Fill();

这会用一些蓝色填充圆圈的内部。

GTK# 中的 Cario 绘图 - 图1

图:简单 drawing

基本形状

下一个示例将一些基本形状绘制到窗口上。

basicshapes.cs

  1. using Gtk;
  2. using Cairo;
  3. using System;
  4. class SharpApp : Window {
  5. public SharpApp() : base("Basic shapes")
  6. {
  7. SetDefaultSize(390, 240);
  8. SetPosition(WindowPosition.Center);
  9. DeleteEvent += delegate { Application.Quit(); };
  10. DrawingArea darea = new DrawingArea();
  11. darea.ExposeEvent += OnExpose;
  12. Add(darea);
  13. ShowAll();
  14. }
  15. void OnExpose(object sender, ExposeEventArgs args)
  16. {
  17. DrawingArea area = (DrawingArea) sender;
  18. Cairo.Context cc = Gdk.CairoHelper.Create(area.GdkWindow);
  19. cc.SetSourceRGB(0.2, 0.23, 0.9);
  20. cc.LineWidth = 1;
  21. cc.Rectangle(20, 20, 120, 80);
  22. cc.Rectangle(180, 20, 80, 80);
  23. cc.StrokePreserve();
  24. cc.SetSourceRGB(1, 1, 1);
  25. cc.Fill();
  26. cc.SetSourceRGB(0.2, 0.23, 0.9);
  27. cc.Arc(330, 60, 40, 0, 2*Math.PI);
  28. cc.StrokePreserve();
  29. cc.SetSourceRGB(1, 1, 1);
  30. cc.Fill();
  31. cc.SetSourceRGB(0.2, 0.23, 0.9);
  32. cc.Arc(90, 160, 40, Math.PI/4, Math.PI);
  33. cc.ClosePath();
  34. cc.StrokePreserve();
  35. cc.SetSourceRGB(1, 1, 1);
  36. cc.Fill();
  37. cc.SetSourceRGB(0.2, 0.23, 0.9);
  38. cc.Translate(220, 180);
  39. cc.Scale(1, 0.7);
  40. cc.Arc(0, 0, 50, 0, 2*Math.PI);
  41. cc.StrokePreserve();
  42. cc.SetSourceRGB(1, 1, 1);
  43. cc.Fill();
  44. ((IDisposable) cc.Target).Dispose ();
  45. ((IDisposable) cc).Dispose ();
  46. }
  47. public static void Main()
  48. {
  49. Application.Init();
  50. new SharpApp();
  51. Application.Run();
  52. }
  53. }

在此示例中,我们将创建一个矩形,一个正方形,一个圆形,一个弧形和一个椭圆形。 我们用蓝色绘制轮廓,内部用白色绘制。

  1. cc.Rectangle(20, 20, 120, 80);
  2. cc.Rectangle(180, 20, 80, 80);
  3. cc.StrokePreserve();
  4. cc.SetSourceRGB(1, 1, 1);
  5. cc.Fill();

这些线绘制一个矩形和一个正方形。

  1. cc.Arc(330, 60, 40, 0, 2*Math.PI);

此处Arc()方法绘制一个完整的圆。

  1. cc.Scale(1, 0.7);
  2. cc.Arc(0, 0, 50, 0, 2*Math.PI);

如果要绘制椭圆形,请先进行一些缩放。 在这里Scale()方法缩小 y 轴。

GTK# 中的 Cario 绘图 - 图2

图:基本形状

色彩

颜色是代表红色,绿色和蓝色(RGB)强度值的组合的对象。 Cario 有效 RGB 值在 0 到 1 的范围内。

colors.cs

  1. using Gtk;
  2. using Cairo;
  3. using System;
  4. class SharpApp : Window {
  5. public SharpApp() : base("Colors")
  6. {
  7. SetDefaultSize(360, 100);
  8. SetPosition(WindowPosition.Center);
  9. DeleteEvent += delegate { Application.Quit(); };
  10. DrawingArea darea = new DrawingArea();
  11. darea.ExposeEvent += OnExpose;
  12. Add(darea);
  13. ShowAll();
  14. }
  15. void OnExpose(object sender, ExposeEventArgs args)
  16. {
  17. DrawingArea area = (DrawingArea) sender;
  18. Cairo.Context cr = Gdk.CairoHelper.Create(area.GdkWindow);
  19. cr.SetSourceRGB(0.2, 0.23, 0.9);
  20. cr.Rectangle(10, 15, 90, 60);
  21. cr.Fill();
  22. cr.SetSourceRGB(0.9, 0.1, 0.1);
  23. cr.Rectangle(130, 15, 90, 60);
  24. cr.Fill();
  25. cr.SetSourceRGB(0.4, 0.9, 0.4);
  26. cr.Rectangle(250, 15, 90, 60);
  27. cr.Fill();
  28. ((IDisposable) cr.Target).Dispose();
  29. ((IDisposable) cr).Dispose();
  30. }
  31. public static void Main()
  32. {
  33. Application.Init();
  34. new SharpApp();
  35. Application.Run();
  36. }
  37. }

我们用三种不同的颜色绘制三个矩形。

  1. cr.SetSourceRGB(0.2, 0.23, 0.9);

SetSourceRGB()方法为 Cario 上下文设置颜色。 该方法的三个参数是颜色强度值。

  1. cr.Rectangle(10, 15, 90, 60);
  2. cr.Fill();

我们创建一个矩形形状,并用先前指定的颜色填充它。

GTK# 中的 Cario 绘图 - 图3

图:颜色

透明矩形

透明性是指能够透视材料的质量。 了解透明度的最简单方法是想象一块玻璃或水。 从技术上讲,光线可以穿过玻璃,这样我们就可以看到玻璃后面的物体。

在计算机图形学中,我们可以使用 alpha 合成来实现透明效果。 Alpha 合成是将图像与背景组合以创建部分透明外观的过程。 合成过程使用 Alpha 通道。 (wikipedia.org,answers.com)

transparentrectangles.cs

  1. using Gtk;
  2. using Cairo;
  3. using System;
  4. class SharpApp : Window {
  5. public SharpApp() : base("Transparent rectangles")
  6. {
  7. SetDefaultSize(590, 90);
  8. SetPosition(WindowPosition.Center);
  9. DeleteEvent += delegate { Application.Quit(); } ;
  10. DrawingArea darea = new DrawingArea();
  11. darea.ExposeEvent += OnExpose;
  12. Add(darea);
  13. ShowAll();
  14. }
  15. void OnExpose(object sender, ExposeEventArgs args)
  16. {
  17. DrawingArea area = (DrawingArea) sender;
  18. Cairo.Context cr = Gdk.CairoHelper.Create(area.GdkWindow);
  19. for ( int i = 1; i <= 10; i++) {
  20. cr.SetSourceRGBA(0, 0, 1, i*0.1);
  21. cr.Rectangle(50*i, 20, 40, 40);
  22. cr.Fill();
  23. }
  24. ((IDisposable) cr.Target).Dispose();
  25. ((IDisposable) cr).Dispose();
  26. }
  27. public static void Main()
  28. {
  29. Application.Init();
  30. new SharpApp();
  31. Application.Run();
  32. }
  33. }

在示例中,我们将绘制十个具有不同透明度级别的矩形。

  1. cr.SetSourceRGBA(0, 0, 1, i*0.1);

SetSourceRGBA()方法的最后一个参数是 alpha 透明度。

GTK# 中的 Cario 绘图 - 图4

图:透明矩形

灵魂伴侣

在下一个示例中,我们在窗口上绘制一些文本。

soulmate.cs

  1. using Gtk;
  2. using Cairo;
  3. using System;
  4. class SharpApp : Window {
  5. public SharpApp() : base("Soulmate")
  6. {
  7. SetDefaultSize(420, 250);
  8. SetPosition(WindowPosition.Center);
  9. DeleteEvent += delegate { Application.Quit(); };
  10. DrawingArea darea = new DrawingArea();
  11. darea.ExposeEvent += OnExpose;
  12. Add(darea);
  13. ShowAll();
  14. }
  15. void OnExpose(object sender, ExposeEventArgs args)
  16. {
  17. DrawingArea area = (DrawingArea) sender;
  18. Cairo.Context cr = Gdk.CairoHelper.Create(area.GdkWindow);
  19. cr.SetSourceRGB(0.1, 0.1, 0.1);
  20. cr.SelectFontFace("Purisa", FontSlant.Normal, FontWeight.Bold);
  21. cr.SetFontSize(13);
  22. cr.MoveTo(20, 30);
  23. cr.ShowText("Most relationships seem so transitory");
  24. cr.MoveTo(20, 60);
  25. cr.ShowText("They're all good but not the permanent one");
  26. cr.MoveTo(20, 120);
  27. cr.ShowText("Who doesn't long for someone to hold");
  28. cr.MoveTo(20, 150);
  29. cr.ShowText("Who knows how to love without being told");
  30. cr.MoveTo(20, 180);
  31. cr.ShowText("Somebody tell me why I'm on my own");
  32. cr.MoveTo(20, 210);
  33. cr.ShowText("If there's a soulmate for everyone");
  34. ((IDisposable) cr.Target).Dispose();
  35. ((IDisposable) cr).Dispose();
  36. }
  37. public static void Main()
  38. {
  39. Application.Init();
  40. new SharpApp();
  41. Application.Run();
  42. }
  43. }

我们显示 Natasha Bedingfields Soulmate 歌曲的部分歌词。

  1. cr.SelectFontFace("Purisa", FontSlant.Normal, FontWeight.Bold);

在这里,我们指定使用的字体-粗体的 Purisa。

  1. cr.SetFontSize(13);

我们指定字体的大小。

  1. cr.MoveTo(20, 30);

我们移动到要绘制文本的位置。

  1. cr.ShowText("Most relationships seem so transitory");

ShowText()方法将文本绘制到窗口上。

GTK# 中的 Cario 绘图 - 图5

图:灵魂伴侣

在 GTK# 编程库的这一章中,我们使用 Cario 库进行绘制。