MatrixEffects1.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.Numerics
  8. Imports GrapeCity.Documents.Drawing
  9. Imports GrapeCity.Documents.Text
  10. Imports GrapeCity.Documents.Imaging
  11. Imports GCTEXT = GrapeCity.Documents.Text
  12. Imports GCDRAW = GrapeCity.Documents.Drawing
  13.  
  14. '' This sample demonstrates how to use HueRotationEffect
  15. '' to change the hue of an image based on the rotation angle.
  16. '' See also MatrixEffects2.
  17. Public Class MatrixEffects1
  18. Function GenerateImage(
  19. ByVal pixelSize As Size,
  20. ByVal dpi As Single,
  21. ByVal opaque As Boolean,
  22. Optional ByVal sampleParams As String() = Nothing) As GcBitmap
  23.  
  24. Dim bmp = New GcBitmap(pixelSize.Width, pixelSize.Height, opaque, dpi, dpi)
  25. Using origBmp = New GcBitmap()
  26. '' Load a sample photo:
  27. Dim imagePath = Path.Combine("Resources", "Images", "lavender.jpg")
  28. Using stm = New FileStream(imagePath, FileMode.Open, FileAccess.Read, FileShare.Read, 4096, FileOptions.RandomAccess)
  29. origBmp.Load(stm)
  30. End Using
  31.  
  32. '' Resize the original photo so we can place 4 samples of it
  33. '' on the resulting bitmap:
  34. Dim w = pixelSize.Width / 2
  35. Dim h = pixelSize.Height / 2
  36. Using sizedBmp = origBmp.Resize(w, h, InterpolationMode.Cubic)
  37. sizedBmp.Opaque = opaque
  38. '' Copy the resized original into 4 quadrants of the resulting bitmap:
  39. bmp.BitBlt(sizedBmp, 0, 0)
  40. bmp.BitBlt(sizedBmp, w, 0)
  41. bmp.BitBlt(sizedBmp, 0, h)
  42. bmp.BitBlt(sizedBmp, w, h)
  43. End Using
  44.  
  45. '' Moving the 3 lines with the "ApplyEffect" comment from below to here
  46. '' will apply the effects only to the photos but Not to the texts.
  47.  
  48. '' Add borders between the quadrants, And captions for each:
  49. Dim lineh = 2
  50. Using g = bmp.CreateGraphics(Nothing)
  51. Dim foreColor = Color.Yellow
  52. Dim backColor = Color.Blue
  53. Dim fnt = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "cour.ttf"))
  54. g.DrawLine(w, 0, w, h * 2, New GCDRAW.Pen(foreColor, lineh * 2))
  55. g.DrawLine(0, h, w * 2, h, New GCDRAW.Pen(foreColor, lineh * 2))
  56. Dim tf = New TextFormat() With {.Font = fnt, .FontSize = 18, .ForeColor = foreColor, .BackColor = backColor, .FontBold = True}
  57. g.DrawString(" Original image ", tf, New PointF(0, 0))
  58. g.DrawString(" HueRotationEffect.Get(120) ", tf, New PointF(w + lineh, 0))
  59. g.DrawString(" HueRotationEffect.Get(180) ", tf, New PointF(0, h + lineh))
  60. g.DrawString(" HueRotationEffect.Get(270) ", tf, New PointF(w + lineh, h + lineh))
  61. End Using
  62. '' ApplyEffect (move this code up to before drawing texts
  63. '' to limit it to photos only And Not affect the captions).
  64. ''
  65. '' Keep the pixels in top left quadrant intact,
  66. '' apply effects to the other 3 quadrants:
  67. bmp.ApplyEffect(HueRotationEffect.Get(120), New Rectangle(w + lineh, 0, w - lineh, h - lineh))
  68. bmp.ApplyEffect(HueRotationEffect.Get(180), New Rectangle(0, h + lineh, w - lineh, h - lineh))
  69. bmp.ApplyEffect(HueRotationEffect.Get(270), New Rectangle(w + lineh, h + lineh, w - lineh, h - lineh))
  70. End Using
  71. '' Done
  72. Return bmp
  73. End Function
  74. End Class
  75.