automate export
automate export
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?
Is there a way to automate this process?
- shawnhcorey
- Posts: 149
- Joined: Mon Jan 07, 2008 12:17 pm
Re: automate export
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.
Re: automate export
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:
and the width will be proportionally changed?
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?
- shawnhcorey
- Posts: 149
- Joined: Mon Jan 07, 2008 12:17 pm
Re: automate export
I think it will but there is nothing I can find in the documentation that says it will. Try It To See (TITS).
Re: automate export
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:
but that didn't help. Do you happen to work on OS X and know what to do ?
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 ?
Re: automate export
If I add /Applications/Inkscape.app/Contents/MacOS/ to the PATH in .profile, I can then execute Inkscape from the command line
Re: automate export
It won't work like this with the bundled Mac OS X application.mickeydog wrote:If I add /Applications/Inkscape.app/Contents/MacOS/ to the PATH in .profile, I can then execute Inkscape from the command line
This will:
- Use this script inside the application bundle to run inkscape on the command with arguments: (this is a shell script wrapper which correctly sets up the environment for the inkscape binary included in the application bundle)
Code: Select all
/Applications/Inkscape.app/Contents/Resources/script
- 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)
- Ignore warnings like e.g. They usually are harmless and do not affect the result.
Code: Select all
Setting Language: .UTF-8
(process:75235): Gtk-WARNING **: Locale not supported by C library.
Using the fallback 'C' locale.
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"
Re: automate export
Thanks for all the help! This was much more involved than I had thought it would be.
Re: automate export
I have a fairly long script now. It looks something like this:
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?
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?
- shawnhcorey
- Posts: 149
- Joined: Mon Jan 07, 2008 12:17 pm
Re: automate export
You could try something like this. This is for the bash(1) shell.
Note that each of the PNG files have their size as part of the file name.
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.
Re: automate export
>>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.
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