解決済み
how to export SVG responsive with responsive off using javascript?
var saveOpts = new ExportOptionsSVG();
saveOpts.embedRasterImages = true;
saveOpts.fontType = SVGFontType.SVGFONT;
saveOpts.DTD = SVGDTDVersion.SVG1_1;
saveOpts.cssProperties = SVGCSSPropertyLocation.STYLEELEMENTS;
saveOpts.documentEncoding = SVGDocumentEncoding.UTF8;
//~ saveOpts.responsive =false;
// saveOpts.svgResponsive = 0;
//~ saveOpts.optimizeForSVGViewer=false;
saveOpts.fontSubsetting = SVGFontSubsetting.GLYPHSUSED;
saveOpts.coordinatePrecision = 3;Hi, I am trying to turn off svg responsive using javascript, but its not working! Is there anyway to do so? thanks in advance!
