SoftMask1.vb
  1. ''
  2. '' This code is part of Document Solutions for PDF demos.
  3. '' Copyright (c) MESCIUS inc. All rights reserved.
  4. ''
  5. Imports System.IO
  6. Imports System.Drawing
  7. Imports GrapeCity.Documents.Pdf
  8. Imports GrapeCity.Documents.Pdf.Graphics
  9. Imports GrapeCity.Documents.Text
  10. Imports GrapeCity.Documents.Drawing
  11. Imports GCTEXT = GrapeCity.Documents.Text
  12. Imports GCDRAW = GrapeCity.Documents.Drawing
  13.  
  14. '' This sample demonstrates how to use GcPdfGraphics.SoftMask
  15. '' to draw semi-transparently and specify clipping.
  16. Public Class SoftMask1
  17. Function CreatePDF(ByVal stream As Stream) As Integer
  18. Dim doc = New GcPdfDocument()
  19. Dim page = doc.NewPage()
  20. Dim g = page.Graphics
  21.  
  22. Dim rc = Util.AddNote(
  23. "GcPdfGraphics has a SoftMask property, which allows creating a mask with a FormXObject, " +
  24. "draw on that object's Graphics using any supported drawing methods " +
  25. "(including semi-transparent drawing), and then use the result as a mask when drawing " +
  26. "on the document's pages. Only the alpha channel from the mask is used. " +
  27. "Solid areas do not mask, transparent areas mask completely, " +
  28. "semi-transparent areas mask in inverse proportion to the alpha value.",
  29. page)
  30.  
  31. Dim rMask = New RectangleF(0, 0, 72 * 5, 72 * 2)
  32. Dim rDoc = New RectangleF(rc.Left, rc.Bottom + 36, rMask.Width, rMask.Height)
  33.  
  34. Dim sMask = SoftMask.Create(doc, rDoc)
  35. Dim smGraphics = sMask.FormXObject.Graphics
  36. smGraphics.FillEllipse(rMask, Color.FromArgb(128, Color.Black))
  37. smGraphics.DrawString("SOLID TEXT",
  38. New TextFormat() With {.Font = StandardFonts.HelveticaBold, .FontSize = 52, .ForeColor = Color.Black},
  39. New RectangleF(rMask.X, rMask.Y, rMask.Width, rMask.Height),
  40. TextAlignment.Center, ParagraphAlignment.Center, False)
  41. Dim rt = rMask
  42. rt.Inflate(-8, -8)
  43. '' Color on the mask does not matter, only alpha channel is important:
  44. smGraphics.DrawEllipse(rt, Color.Red)
  45.  
  46. g.SoftMask = sMask
  47. g.DrawImage(GCDRAW.Image.FromFile(Path.Combine("Resources", "Images", "reds.jpg")), rDoc, Nothing, ImageAlign.StretchImage)
  48. '' NOTE: it looks like some PDF viewers (such as built-in browser viewers)
  49. '' do not handle changing soft masks correctly unless the mask is reset prior
  50. '' to assigning a new one, hence this:
  51. g.SoftMask = SoftMaskBase.None
  52.  
  53. rDoc.Offset(0, rDoc.Height + 12)
  54. rDoc.Width = rc.Width
  55. rDoc.Height = 36
  56. rMask.Height = rDoc.Height
  57.  
  58. For alpha = 16 To 255 Step 32
  59. sMask = SoftMask.Create(doc, rDoc)
  60. smGraphics = sMask.FormXObject.Graphics
  61. smGraphics.DrawString($"Text drawn on mask with alpha {alpha}.",
  62. New TextFormat() With {.Font = StandardFonts.HelveticaBold, .FontSize = 24, .ForeColor = Color.FromArgb(alpha, Color.Black)},
  63. New RectangleF(rMask.X, rMask.Y, rMask.Width, rMask.Height),
  64. TextAlignment.Leading, ParagraphAlignment.Center, False)
  65. g.SoftMask = sMask
  66. g.DrawImage(GCDRAW.Image.FromFile(Path.Combine("Resources", "Images", "reds.jpg")), rDoc, Nothing, ImageAlign.StretchImage)
  67. g.SoftMask = SoftMaskBase.None
  68. rDoc.Offset(0, rDoc.Height)
  69. Next
  70.  
  71. '' Done:
  72. doc.Save(stream)
  73. Return doc.Pages.Count
  74. End Function
  75. End Class
  76.