automate export

Post questions on how to use or achieve an effect in Inkscape.
mickeydog
Posts: 38
Joined: Tue Jul 09, 2013 1:22 pm

automate export

Postby mickeydog » Sun Aug 18, 2013 10:56 pm

I have a bunch of images in which I need to export each one as png files with heights 32,48,72, and 96.
Is there a way to automate this process?

User avatar
shawnhcorey
Posts: 149
Joined: Mon Jan 07, 2008 12:17 pm

Re: automate export

Postby shawnhcorey » Sun Aug 18, 2013 11:09 pm

mickeydog wrote:I have a bunch of images in which I need to export each one as png files with heights 32,48,72, and 96.
Is there a way to automate this process?


Yes, in a command line, type:

Code: Select all

inkscape -w 32 -h 32 -e image.png image.svg

Replace the both of the 32 in the above for different sizes.

mickeydog
Posts: 38
Joined: Tue Jul 09, 2013 1:22 pm

Re: automate export

Postby mickeydog » Sun Aug 18, 2013 11:57 pm

Thanks for your reply.

If I interpret that statement correctly, it will set both the width and height to 32, correct?
In my case, I want the height to be 32, but width will vary. So can I do this:

Code: Select all

inkscape -h 32 -e image.png image.svg

and the width will be proportionally changed?

User avatar
shawnhcorey
Posts: 149
Joined: Mon Jan 07, 2008 12:17 pm

Re: automate export

Postby shawnhcorey » Mon Aug 19, 2013 12:15 am

I think it will but there is nothing I can find in the documentation that says it will. Try It To See (TITS).

mickeydog
Posts: 38
Joined: Tue Jul 09, 2013 1:22 pm

Re: automate export

Postby mickeydog » Mon Aug 19, 2013 12:24 am

Ok, I'm trying it but can't execute the command Inkscape, saying Command not found. I'm on OS X, so in the .profile I added Applications folder to the PATH:

Code: Select all

/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin:/usr/local/git/bin:/usr/X11/bin:/Applications/android-sdk-mac-x86:/Applications/

but that didn't help. Do you happen to work on OS X and know what to do ?

mickeydog
Posts: 38
Joined: Tue Jul 09, 2013 1:22 pm

Re: automate export

Postby mickeydog » Mon Aug 19, 2013 7:41 am

If I add /Applications/Inkscape.app/Contents/MacOS/ to the PATH in .profile, I can then execute Inkscape from the command line

~suv
Posts: 2272
Joined: Sun May 10, 2009 2:07 am

Re: automate export

Postby ~suv » Mon Aug 19, 2013 3:25 pm

mickeydog wrote:If I add /Applications/Inkscape.app/Contents/MacOS/ to the PATH in .profile, I can then execute Inkscape from the command line
It won't work like this with the bundled Mac OS X application.


This will:
  1. Use this script inside the application bundle to run inkscape on the command with arguments:

    Code: Select all

    /Applications/Inkscape.app/Contents/Resources/script
    (this is a shell script wrapper which correctly sets up the environment for the inkscape binary included in the application bundle)
  2. Always reference files with absolute path names (that's a limitation due to the bundle architecture, and differs from how inkscape is used on the command line on other platforms, or with regular command line builds on OS X)
  3. Ignore warnings like e.g.

    Code: Select all

    Setting Language: .UTF-8

    (process:75235): Gtk-WARNING **: Locale not supported by C library.
       Using the fallback 'C' locale.
    They usually are harmless and do not affect the result.

Example:

Code: Select all

/Applications/Inkscape.app/Contents/Resources/script -h 32 -e /Users/mickeydog/Documents/image.png /Users/mickeydog/Documents/image.svg


Tip: Instead of appending to $PATH in ~/.profile, create an alias to the script (in ~/.bashrc):

Code: Select all

alias inkscape="/Applications/Inkscape.app/Contents/Resources/script"

mickeydog
Posts: 38
Joined: Tue Jul 09, 2013 1:22 pm

Re: automate export

Postby mickeydog » Tue Aug 20, 2013 11:37 am

Thanks for all the help! This was much more involved than I had thought it would be.

mickeydog
Posts: 38
Joined: Tue Jul 09, 2013 1:22 pm

Re: automate export

Postby mickeydog » Wed Aug 21, 2013 9:42 am

I have a fairly long script now. It looks something like this:

Code: Select all

scriptPath='/Applications/Inkscape.app/Contents/Resources'
sourcePath='/Users/apple/Documents/my/source/path'
destinationPath='/Users/apple/my/destination/path'

$scriptPath/script --without-gui  -h 32 --export-png=$destinationPath/red.png -f $sourcePath/red.svg
$scriptPath/script --without-gui  -h 32 --export-png=$destinationPath/blue.png -f $sourcePath/blue.svg
$scriptPath/script --without-gui  -h 32 --export-png=$destinationPath/green.png -f $sourcePath/green.svg
+ many more lines line the previous three


It basically works, but it is erratic in that some of the files get created and some don't. I wonder if I have to wait for the completion of one line before starting to execute the next. Is this the problem? and if so, how do I wait for a command line to complete?

User avatar
shawnhcorey
Posts: 149
Joined: Mon Jan 07, 2008 12:17 pm

Re: automate export

Postby shawnhcorey » Wed Aug 21, 2013 10:00 am

You could try something like this. This is for the bash(1) shell.

Code: Select all

scriptPath='/Applications/Inkscape.app/Contents/Resources'
sourcePath='/Users/apple/Documents/my/source/path'
destinationPath='/Users/apple/my/destination/path'

for size in 32 48 72 96
do
    $scriptPath/script --without-gui  -h $size --export-png=$destinationPath/red_$size.png -f $sourcePath/red.svg
    $scriptPath/script --without-gui  -h $size --export-png=$destinationPath/blue_$size.png -f $sourcePath/blue.svg
    $scriptPath/script --without-gui  -h $size --export-png=$destinationPath/green_$size.png -f $sourcePath/green.svg
done


Note that each of the PNG files have their size as part of the file name.

mickeydog
Posts: 38
Joined: Tue Jul 09, 2013 1:22 pm

Re: automate export

Postby mickeydog » Wed Aug 21, 2013 10:53 am

>>Note that each of the PNG files have their size as part of the file name.
That is undesirable in this situation and I am not sure that this addresses whatever issue I'm having. Please explain if it does. The script really looks more like below, in which exported files of the same name are written to different directories.

Code: Select all

$scriptPath/script --without-gui  -h 32 --export-png=$destinationPath/drawable-ldpi/blue.png -f $sourcePath/blue.svg
$scriptPath/script --without-gui  -h 48 --export-png=$destinationPath/drawable-mdpi/blue.png -f $sourcePath/blue.svg
$scriptPath/script --without-gui  -h 72 --export-png=$destinationPath/drawable-hdpi/blue.png -f $sourcePath/blue.svg
$scriptPath/script --without-gui  -h 96 --export-png=$destinationPath/drawable-xhdpi/blue.png -f $sourcePath/blue.svg


Return to “Help with using Inkscape”