On Thu, Sep 25, 2008 at 2:53 PM, Gian Paolo Mureddu <thetargos@...155...> wrote:
I want to batch resize a large number of .svg files _into_ scaled up .svg files, without having to open each individual file, resize and save.
That's a bit weird, since SVG is vector it is rarely needed to resize as a whole - you just embed it at a different size, or scale where you imported it, or export it to a higher resolution. The "size" of an SVG is just a hint.
If you really need it, I think it's easiest to do by a XSLT script that would add a transform= attribute to the root svg tag of all files and adjusts width/height. You can also try to do it via Inkscape verbs from commandline, but we don't have a verb which scales to a given extent (verbs cannot have arguments currently).