Watermark.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 GrapeCity.Documents.Drawing
  8. Imports GrapeCity.Documents.Text
  9. Imports GrapeCity.Documents.Imaging
  10. Imports GCTEXT = GrapeCity.Documents.Text
  11. Imports GCDRAW = GrapeCity.Documents.Drawing
  12.  
  13. '' This sample demonstrates how to add a text watermark
  14. '' to an image. The image is rendered using its native
  15. '' resolution on a GcBitmap, then the watermark text
  16. '' is drawn on top using a semitransparent color.
  17. '' The resulting bitmap with the added watermark
  18. '' can be saved to any of the supported image formats.
  19. Public Class Watermark
  20. Function GenerateImage(
  21. ByVal pixelSize As Size,
  22. ByVal dpi As Single,
  23. ByVal opaque As Boolean,
  24. Optional ByVal sampleParams As String() = Nothing) As GcBitmap
  25.  
  26. Dim Inch = dpi
  27. Dim bmp = New GcBitmap(pixelSize.Width, pixelSize.Height, True, dpi, dpi)
  28. Using g = bmp.CreateGraphics(Color.White)
  29. Using img = GCDRAW.Image.FromFile(Path.Combine("Resources", "Images", "reds.jpg"))
  30. Dim rc = New RectangleF(0, 0, img.Width, img.Height)
  31. g.DrawImage(img, rc, Nothing, ImageAlign.Default)
  32.  
  33. g.DrawString(
  34. "Watermark",
  35. New TextFormat() With
  36. {
  37. .Font = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "calibrib.ttf")),
  38. .FontSize = Inch,
  39. .ForeColor = Color.FromArgb(128, Color.Yellow)
  40. },
  41. rc, TextAlignment.Center, ParagraphAlignment.Center, False)
  42.  
  43. Util.AddNote(
  44. "The image above has a watermark added to it using text drawn with a semitransparent color.",
  45. g, New RectangleF(Inch / 2, img.Height + Inch / 4, pixelSize.Width - Inch, pixelSize.Height - img.Height - Inch / 4))
  46.  
  47. '' Draw border around the whole image
  48. g.DrawRectangle(New RectangleF(0, 0, bmp.Width, bmp.Height), Color.DarkSlateBlue, 4)
  49. End Using
  50.  
  51. End Using
  52. '' Done
  53. Return bmp
  54. End Function
  55. End Class
  56.