Watermark2.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 how to render a watermark on an image
  17. '' at an angle using a rotation transformation on the bitmap graphics.
  18. Public Class Watermark2
  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. '' Note: we can use Color.Transparent instead Of a solid background,
  26. '' but the resulting image format must support transparency for this
  27. '' to work as expected:
  28. Dim backColor = Color.FromArgb(&HFF0066CC)
  29. Dim foreColor = Color.FromArgb(&HFFFFCC00)
  30. Dim angle = -30
  31. Dim rad = (angle * Math.PI) / 180.0F
  32.  
  33. Dim bmp = New GcBitmap(pixelSize.Width, pixelSize.Height, opaque, dpi, dpi)
  34. Using bmpSrc = New GcBitmap(Path.Combine("Resources", "ImagesBis", "alpamayo-sq.jpg"))
  35. '' BitBlt requires the opacity of both images to be the same:
  36. bmpSrc.Opaque = opaque
  37. '' Render source image onto the target bitmap
  38. '' (generally we might want to resize the source image first,
  39. '' but in this case we just know that the source image has
  40. '' the same size as the target, so skip this step):
  41. bmp.BitBlt(bmpSrc, 0, 0)
  42. End Using
  43.  
  44. Using g = bmp.CreateGraphics()
  45. '' Draw watermark text in a loop over all image at an angle:
  46. g.Transform = Matrix3x2.CreateRotation((angle * Math.PI) / 180.0F, New Vector2(pixelSize.Width / 2, pixelSize.Height / 2))
  47. Dim tf = New TextFormat() With
  48. {
  49. .Font = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "calibrib.ttf")),
  50. .FontSize = 14,
  51. .ForeColor = Color.FromArgb(64, Color.White)
  52. }
  53. Dim tl = g.CreateTextLayout()
  54. tl.Append("Copyright (c) MESCIUS", tf)
  55. tl.PerformLayout(True)
  56. Dim dx = tl.ContentWidth * 3
  57. Dim dy = tl.ContentHeight * 5
  58. Dim n = 0
  59. Dim offX = -(Math.Cos(rad) * pixelSize.Height / 2)
  60. Dim offY = (Math.Sin(rad) * pixelSize.Width / 2)
  61. For y = offY To pixelSize.Height - offY Step dy
  62. For x = offX + dx / 2 * (n Mod 2) To pixelSize.Width - offX Step dx
  63. g.DrawTextLayout(tl, New PointF(x, y))
  64. Next
  65. n += 1
  66. Next
  67. End Using
  68. Return bmp
  69. End Function
  70. End Class
  71.