msdfgen-ext.h 758 B

1234567891011121314151617181920212223242526
  1. #pragma once
  2. /*
  3. * MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.9 (2021-05-28) - extensions
  4. * ----------------------------------------------------------------------------
  5. * A utility by Viktor Chlumsky, (c) 2014 - 2021
  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. * - LodePNG by Lode Vandevenne
  17. * (to save output PNG images)
  18. *
  19. */
  20. #include "ext/resolve-shape-geometry.h"
  21. #include "ext/save-png.h"
  22. #include "ext/import-svg.h"
  23. #include "ext/import-font.h"