2
0

msdfgen-ext.h 740 B

123456789101112131415161718192021222324252627
  1. #pragma once
  2. /*
  3. * MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR
  4. * ---------------------------------------------
  5. * A utility by Viktor Chlumsky, (c) 2014 - 2025
  6. *
  7. * The extension module provides ways to easily load input and save output using popular formats.
  8. *
  9. * Third party dependencies in extension module:
  10. * - Skia by Google
  11. * (to resolve self-intersecting paths)
  12. * - FreeType 2
  13. * (to load input font files)
  14. * - TinyXML 2 by Lee Thomason
  15. * (to aid in parsing input SVG files)
  16. * - libpng by the PNG Development Group
  17. * - or LodePNG by Lode Vandevenne
  18. * (to save output PNG images)
  19. *
  20. */
  21. #include "ext/resolve-shape-geometry.h"
  22. #include "ext/save-png.h"
  23. #include "ext/import-svg.h"
  24. #include "ext/import-font.h"