Gradients2.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. // Gradients
  20. public class Gradients2
  21. {
  22. public GcBitmap GenerateImage(Size pixelSize, float dpi, bool opaque, string[] sampleParams = null)
  23. {
  24. var blue = Color.FromArgb(unchecked((int)0xFF2e4884));
  25. var bmp = new GcBitmap(pixelSize.Width, pixelSize.Height, true, dpi, dpi);
  26. using (var g = bmp.CreateGraphics(Color.RoyalBlue))
  27. {
  28. var m = Matrix3x2.CreateSkew((float)Math.PI / 7, 0, new Vector2(175, 90));
  29. g.Transform = m * Matrix3x2.CreateScale(2f) * Matrix3x2.CreateTranslation(100, 100);
  30. var pen = new GCDRAW.Pen(Color.Yellow, 0.5f);
  31.  
  32. var rgBrush = new RadialGradientBrush(Color.White, Color.Navy)
  33. {
  34. GradientOrigin = new PointF(0.8f, 0.3f),
  35. AllowEllipticGradients = true
  36. };
  37. g.FillEllipse(new RectangleF(30, 30, 240, 140), rgBrush);
  38.  
  39. pen.Color = Color.Red;
  40. pen.Width = 2;
  41. g.DrawRectangle(new RectangleF(30, 30, 240, 140), pen);
  42.  
  43. pen.Color = Color.LightGreen;
  44. pen.Width = 3.5f;
  45. pen.DashStyle = DashStyle.DashDotDot;
  46. pen.DashOffset = -3;
  47. pen.LineCap = PenLineCap.Round;
  48. g.DrawEllipse(new RectangleF(30, 30, 240, 140), pen);
  49.  
  50. g.DrawString("DsImaging", new TextFormat()
  51. {
  52. Font = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "calibri.ttf")),
  53. ForeColor = Color.White,
  54. FontSize = 20f
  55. }, new PointF(100, 110));
  56. }
  57. return bmp;
  58. }
  59. }
  60. }
  61.