Question
How to export selection as svg using extendscript?
Hi,
I need to export the selection as an SVG using ExtendScript, just like the manual 'Export Selection' functionality.
var svgexportOptions = new ExportOptionsSVG();
svgexportOptions.embedRasterImages = true;
svgexportOptions.coordinatePrecision = 3;
It is working fine, but there is some empty space at the top compared to the manual 'Export Selection'.
