SoftEdgesAlt.cs
  1. //
  2. // This code is part of Document Solutions for Imaging demos.
  3. // Copyright (c) MESCIUS inc. All rights reserved.
  4. //
  5. using System;
  6. using System.IO;
  7. using System.Drawing;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Numerics;
  11. using GrapeCity.Documents.Drawing;
  12. using GrapeCity.Documents.Text;
  13. using GrapeCity.Documents.Imaging;
  14. using GCTEXT = GrapeCity.Documents.Text;
  15. using GCDRAW = GrapeCity.Documents.Drawing;
  16.  
  17. namespace DsImagingWeb.Demos
  18. {
  19. // This sample demonstrates how to create a Soft Edges effect using DsImaging.
  20. // The Soft Edges effect deflates all non-transparent areas of an image by a specified amount,
  21. // then applies a Gaussian blur to make the border smooth. It is one of the effects
  22. // that are found in MS Word for example.
  23. //
  24. // To achieve this effect in DsImaging, the GrayscaleBitmap.ApplyGlow() method is used
  25. // on the transparency mask built from the color image on which we want the soft edges to appear,
  26. // along with a few other simple steps as illustrated by this code.
  27. //
  28. // This example shows how to achieve the soft edges effect without drawing the content
  29. // (text and image) twice. See SoftEdges for an alternative way to achieve the same effect.
  30. //
  31. // The same GrayscaleBitmap.ApplyGlow() method is also used to achieve the Glow effect
  32. // as illustrated by the Glow and GlowAlt examples.
  33. public class SoftEdgesAlt
  34. {
  35. private GCTEXT.Font _font = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "calibri.ttf"));
  36.  
  37. public GcBitmap GenerateImage(Size pixelSize, float dpi, bool opaque, string[] sampleParams = null)
  38. {
  39. // Draw text and logo on a transparent bitmap:
  40. var bmp = new GcBitmap(pixelSize.Width, pixelSize.Height, false);
  41. bmp.Clear(Color.Transparent);
  42.  
  43. var renderer = bmp.EnsureRendererCreated();
  44. DrawText(renderer, pixelSize, dpi);
  45. DrawLogo(renderer, new PointF(pixelSize.Width / 2, (int)(pixelSize.Height * 0.8)), pixelSize.Width / 2);
  46.  
  47. // Convert the image to a transparency mask:
  48. using var gs = bmp.ToGrayscaleBitmap(ColorChannel.Alpha);
  49.  
  50. // Apply the Soft Edges effect to it; while for Glow the inflation radius is positive,
  51. // for Soft Edges it should be negative, -6 here (9 is the blur radius):
  52. gs.ApplyGlow(-6, 9);
  53.  
  54. // Use the resulting GrayscaleBitmap as a transparency mask:
  55. bmp.ApplyTransparencyMask(gs);
  56.  
  57. // Fill the background:
  58. bmp.ConvertToOpaque(Color.Gray);
  59.  
  60. // Done
  61. return bmp;
  62. }
  63.  
  64. void DrawText(BitmapRenderer renderer, Size pixelSize, float dpi)
  65. {
  66. var f1 = new TextFormat
  67. {
  68. Font = _font,
  69. FontSize = pixelSize.Height / 6,
  70. ForeColor = Color.DarkOrchid,
  71. FontBold = true
  72. };
  73. var f2 = new TextFormat(f1)
  74. {
  75. ForeColor = Color.White,
  76. StrokePen = new GCDRAW.Pen(Color.DarkOrchid, 3)
  77. };
  78. var tl = new TextLayout(dpi)
  79. {
  80. MaxWidth = pixelSize.Width,
  81. MaxHeight = pixelSize.Height,
  82. ParagraphAlignment = ParagraphAlignment.Near,
  83. TextAlignment = TextAlignment.Center,
  84. MarginTop = dpi * 2,
  85. LineSpacingScaleFactor = 0.7f,
  86. };
  87. tl.Append("Document", f1);
  88. tl.Append("Solutions", f2);
  89.  
  90. // Draw the text:
  91. renderer.SlowAntialiasing = true;
  92. renderer.DrawTextLayout(tl, 0, 0);
  93. }
  94.  
  95. void DrawLogo(BitmapRenderer renderer, PointF center, float width)
  96. {
  97. var pb = new PathBuilder();
  98. pb.BeginFigure(100, 350);
  99. pb.AddLine(210, 310);
  100. var arc = new ArcSegment
  101. {
  102. Size = new SizeF(183, 173),
  103. SweepDirection = SweepDirection.Clockwise,
  104. Point = new PointF(550, 205),
  105. };
  106. pb.AddArc(arc);
  107. pb.AddLine(650, 170);
  108. pb.AddLine(680, 250);
  109. pb.AddLine(575, 285);
  110. arc.Point = new PointF(240, 390);
  111. pb.AddArc(arc);
  112. pb.AddLine(130, 430);
  113. pb.EndFigure(true);
  114. pb.Figures.Add(new EllipticFigure(new RectangleF(295, 197, 200, 190)));
  115. var gpFill = pb.ToPath();
  116. var gpStroke = gpFill.Widen(new GCDRAW.Pen(Color.Black, 20));
  117.  
  118. // Our 'base' size is 800 x 600 pixels:
  119. float scale = width / 800;
  120. renderer.Transform = Matrix3x2.CreateScale(scale) *
  121. Matrix3x2.CreateTranslation(center.X - 400 * scale, center.Y - 300 * scale);
  122. renderer.FillPath(gpFill, Color.CornflowerBlue);
  123. renderer.FillPath(gpStroke, Color.DarkOrchid);
  124. renderer.Transform = Matrix3x2.Identity;
  125. }
  126. }
  127. }
  128.