Jump to content

Show SVG code from uploaded image


cb2004
 Share

Recommended Posts

// requeire https://processwire.com/modules/file-validator-svg-sanitizer/ and 

$svgSanitizer = $this->wire()->modules->get('FileValidatorSvgSanitizer')->getSvgSanitizer();
$svgSanitizer->minify(true);
$svgSanitizer->removeXMLTag(true);

$data->setArray([
  'inline_svg' => $svgSanitizer->sanitize($this->wire()->files->fileGetContents($category->get('svg')->filename)),
]);

 

  • Like 2
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...