HatchStyles.vb
  1. ''
  2. '' This code is part of Document Solutions for Imaging demos.
  3. '' Copyright (c) MESCIUS inc. All rights reserved.
  4. ''
  5. Imports System.IO
  6. Imports System.Drawing
  7. Imports System.Collections.Generic
  8. Imports System.Linq
  9. Imports System.Numerics
  10. Imports GrapeCity.Documents.Drawing
  11. Imports GrapeCity.Documents.Text
  12. Imports GrapeCity.Documents.Imaging
  13. Imports GCTEXT = GrapeCity.Documents.Text
  14. Imports GCDRAW = GrapeCity.Documents.Drawing
  15.  
  16. '' This sample demonstrates the different hatch brush styles.
  17. '' Many of those styles implement MS Excel pattern styles.
  18. Public Class HatchStyles
  19. Function GenerateImage(
  20. ByVal pixelSize As Size,
  21. ByVal dpi As Single,
  22. ByVal opaque As Boolean,
  23. Optional ByVal sampleParams As String() = Nothing) As GcBitmap
  24.  
  25. '' HatchStyle
  26. Dim htchStyles = [Enum].GetValues(GetType(HatchStyle))
  27. Dim COLS = 4
  28. Dim w = pixelSize.Width / COLS
  29. Dim h = pixelSize.Height / ((htchStyles.Length + COLS - 1) / COLS)
  30.  
  31. Dim tf = New TextFormat With
  32. {
  33. .Font = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "times.ttf")),
  34. .FontSize = 12
  35. }
  36.  
  37. Dim bmp = New GcBitmap(pixelSize.Width, pixelSize.Height, True, dpi, dpi)
  38. Using g = bmp.CreateGraphics(Color.White)
  39. Dim row = 0, col = 0
  40. For Each hs As HatchStyle In htchStyles
  41. '' Hatch:
  42. Dim rc = New RectangleF(col * w, row * h, w, h)
  43. Dim b = New HatchBrush(hs) With
  44. {
  45. .ForeColor = Color.Black,
  46. .BackColor = Color.White
  47. }
  48. g.FillRectangle(rc, b)
  49. '' Caption:
  50. Dim cap = hs.ToString()
  51. Dim scap = g.MeasureString(cap, tf)
  52. Dim rcap = New RectangleF(
  53. rc.X + (rc.Width - scap.Width) / 2,
  54. rc.Y + (rc.Height - scap.Height) / 2,
  55. scap.Width, scap.Height)
  56. rcap.Inflate(3, 2)
  57. g.FillRectangle(rcap, Color.White)
  58. g.DrawString(cap, tf, rcap, TextAlignment.Center, ParagraphAlignment.Center)
  59. '' Move on
  60. col += 1
  61. If col >= COLS Then
  62. col = 0
  63. row += 1
  64. End If
  65. Next
  66. End Using
  67. Return bmp
  68. End Function
  69. End Class
  70.