ScaleSvg.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 GrapeCity.Documents.Svg;
  15. using GCTEXT = GrapeCity.Documents.Text;
  16. using GCDRAW = GrapeCity.Documents.Drawing;
  17. using DsImagingWeb.Demos.Common;
  18.  
  19. namespace DsImagingWeb.Demos
  20. {
  21. // This sample shows how to measure and scale the actual content of an SVG image.
  22. // It uses a sample SVG with intrinsic size larger than the actual content,
  23. // and content that is offset within the viewport.
  24. //
  25. // The same SVG is used to illustrate the difference between various SVG sizes in RenderSvgContent sample.
  26. //
  27. // The SVG art used in this sample is from freesvg.org.
  28. public class ScaleSvg
  29. {
  30. public GcBitmap GenerateImage(Size pixelSize, float dpi, bool opaque, string[] sampleParams = null)
  31. {
  32. var svgPath = Path.Combine("Resources", "SvgMisc", "Smiling-Girl-offset.svg");
  33. using var svg = GcSvgDocument.FromFile(svgPath);
  34.  
  35. // Create the bitmap:
  36. var bmp = new GcBitmap(pixelSize.Width, pixelSize.Height, opaque, dpi, dpi);
  37. using var g = bmp.CreateGraphics(Color.White);
  38.  
  39. // Get the actual SVG image content bounds:
  40. var contentRc = g.MeasureSvg(svg, PointF.Empty);
  41. // Make sure the SVG content fits height-wise twice:
  42. var q = pixelSize.Height / (contentRc.Height * 2.1f);
  43. contentRc.X *= q;
  44. contentRc.Y *= q;
  45. contentRc.Width *= q;
  46. contentRc.Height *= q;
  47.  
  48. // Align the actual SVG content to point (0,0):
  49. var s = svg.GetIntrinsicSize(SvgLengthUnits.Pixels);
  50. s.Width *= q;
  51. s.Height *= q;
  52. // This rectangle (in pixels) is similar to the SVG view port.
  53. // It is also scaled so that the SVG content fits twice heightwise,
  54. // and the actual SVG content's top left corner is at the top left corner
  55. // of the rectangle:
  56. var rc = new RectangleF(-contentRc.X, -contentRc.Y, s.Width, s.Height);
  57.  
  58. // Set up padding:
  59. const float pad = 12;
  60. rc.Offset(pad, pad);
  61.  
  62. // Scale down, limit number of iterations for sanity:
  63. const float qDown = 0.8f;
  64. var currRc = rc;
  65. var currContentRc = contentRc;
  66. while (currRc.X + currContentRc.Right < pixelSize.Width && currContentRc.Height > 8)
  67. {
  68. g.DrawSvg(svg, currRc);
  69. // Draw content bounds if debugging:
  70. // var trc = currContentRc;
  71. // trc.Offset(currRc.Location);
  72. // g.DrawRectangle(trc, Color.MediumPurple);
  73. // Scale SVG content down:
  74. currRc.Height *= qDown;
  75. currRc.Width *= qDown;
  76. currRc.Y -= (currContentRc.Top * qDown - currContentRc.Top);
  77. currRc.X += currContentRc.Width + currContentRc.Left - currContentRc.Left * qDown;
  78. currContentRc.X *= qDown;
  79. currContentRc.Y *= qDown;
  80. currContentRc.Width *= qDown;
  81. currContentRc.Height *= qDown;
  82. }
  83. // Scale up:
  84. const float qUp = 1.2f;
  85. currRc = rc;
  86. currContentRc = contentRc;
  87. currRc.Offset(0, pixelSize.Height - contentRc.Height - pad * 2);
  88. while (currRc.X + currContentRc.Right < pixelSize.Width)
  89. {
  90. g.DrawSvg(svg, currRc);
  91. // Draw content bounds if debugging:
  92. // var trc = currContentRc;
  93. // trc.Offset(currRc.Location);
  94. // g.DrawRectangle(trc, Color.MediumPurple);
  95. // Scale SVG content up:
  96. currRc.Height *= qUp;
  97. currRc.Width *= qUp;
  98. currRc.Y -= (currContentRc.Bottom * qUp - currContentRc.Bottom);
  99. currRc.X += currContentRc.Width + currContentRc.Left - currContentRc.Left * qUp;
  100. currContentRc.X *= qUp;
  101. currContentRc.Y *= qUp;
  102. currContentRc.Width *= qUp;
  103. currContentRc.Height *= qUp;
  104. }
  105. // Done:
  106. return bmp;
  107. }
  108. }
  109. }
  110.