]> git.lyx.org Git - lyx.git/blob - lib/scripts/convertDefault.sh
add algorithm counter
[lyx.git] / lib / scripts / convertDefault.sh
1 #!/bin/sh
2 # this is the default converter if no one other was
3 # defined by the user in edit->preferences->converter
4 #
5 # the user can also redefine this default converter
6 # with an own shell script in ~/.lyx/scripts
7 #
8 # converts an image from $1 to $2 format 
9 convert -depth 8 $1 $2 
10 exit 0