Mobile app version of vmapp.org
Login or Join
Gloria351

: Export multiple SVG files generated with Inkscape to multiple PDF files I have around 150 SVG files created in Inkscape. Is there is a utility that can export all of these to multiple PDF

@Gloria351

Posted in: #Export #Pdf #SoftwareRecommendation #Svg #Windows

I have around 150 SVG files created in Inkscape. Is there is a utility that can export all of these to multiple PDF or PNG files?

Exporting individually is too time consuming, so I was wondering if I could do it in a batch with some utility/software.

Windows preferred.

10.06% popularity Vote Up Vote Down


Login to follow query

More posts by @Gloria351

6 Comments

Sorted by latest first Latest Oldest Best

 

@Frith110

After looking multiple sites I've found a simple way using only one command line.

I've never used command line before, but after some experimentation i've came with the following solution:

for /f "tokens=1* delims=." %i in ('dir /b *.svg') do "C:Program FilesInkscapeinkscape.exe" --without-gui --file="%i.svg" --export-emf="%i.emf"


Breaking it down:

for


for is a command to perform an action to multiple files. It's structure is something like: for "files in a certain condition" do "especific command"

/f "tokens=1* delims=." %i in ('dir /b *.svg')


This is the "condition". In my case, I'm looking for all SVG files, but of course it works with others formats. All this "fancy" code does is store the file name, before the extention, in the variable "%i". This will be usefull in the comand.

do


That is what you will perform in all the files.

"C:Program FilesInkscapeinkscape.exe" --without-gui --file="%i.svg" --export-emf="%i.emf"


This is the same command Marnen Laibow-Koser used above. I'm a newbie, i don't know how you use just "inkscape", so i've putted all the way to the .exe.

The last part is where we use the variable to instruct the program to wich file it should pick and how export.

Again, I'm exporting SVG to EMF, but just change it to what you want. Here is why the variable are so important. So you can keep the same name, just changing the extention.

Don't forget to use the quotes, since your files can have some space in it's name.

Of course you also need to be in the folder where your files are. If your are also a newbie do this:

C:


It will put you in the correct drive.

CD "path"


It will take you to the specific folder. You can use the windows explorer and click with right button and copy the path as text.

That's it. I'm newbie, soo it might be someway more efective to do it, but this will work.

Last tip: If you are working with a lot of files, you can use CTRL + C to stop the command line if it's not working how it should, and try again.

10% popularity Vote Up Vote Down


 

@Sarah814

You can do this using Inkscape's command line interface (inkscape --without-gui --export-pdf=myfile.pdf myfile.svg), and then use a batch file, shell script, or build tool (such as Make, Rake, or Grunt) to run that automatically on a whole list of files.

10% popularity Vote Up Vote Down


 

@Nickens508

For people who landed here from a google search because this question references Inkscape but isn't tagged with Windows, here's a complete howto for Linux (this assumes you have Inkscape installed on your system - tested on Ubunut 14.04 with Inkscape 0.91).

Create a file in the directory where you want to convert your SVGs to PDFs. (I used gedit below but you might as well replace it the text editor of your choice)

gedit convertSVGtoPDF.sh


Paste the following code inside

#!/bin/bash
mkdir "$PWD"/pdf
for file in $PWD/*.svg
do
filename=$(basename "$file")
inkscape "$file" -d 1200 -A "$PWD"/pdf/"${filename%.svg}.pdf"
done


You can tweak the desired output resolution by modifying the value after the option -d.

Save the file.

Now make this script executable

sudo chmod +x convertSVGtoPDF.sh


And execute it inside your directory containing the SVGs

./convertSVGtoPDF.sh


This will create a new folder called pdf where you can find your PDFs with embedded fonts.

Happy Inkscaping!

10% popularity Vote Up Vote Down


 

@Ravi4787994

For me the best way to do it is zamzar.com
which is a free online file conversion site. It allows user to convert files without downloading a software tool, and supports over 1,000 different conversion types.

10% popularity Vote Up Vote Down


 

@Radia289

Some other options tools to convert to/from SVG from the Inkscape Wiki:


svg2pdf
ImageMagick
ConversionSVG

10% popularity Vote Up Vote Down


 

@Gloria351

This link seems to have what you want: Batch export from inkscape in windows.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme