2003-01-13 23:35:18 +00:00
|
|
|
|
#! /bin/sh
|
2003-08-22 10:50:02 +00:00
|
|
|
|
|
|
|
|
|
# file convertDefault.sh
|
|
|
|
|
# This file is part of LyX, the document processor.
|
|
|
|
|
# Licence details can be found in the file COPYING.
|
|
|
|
|
|
|
|
|
|
# author Herbert Vo<56>
|
|
|
|
|
|
|
|
|
|
# Full author contact details are available in file CREDITS.
|
|
|
|
|
|
2003-01-13 23:35:18 +00:00
|
|
|
|
# The default converter if no other has been defined by the user from the
|
|
|
|
|
# Conversion->Converter tab of the Preferences dialog.
|
2003-08-22 10:50:02 +00:00
|
|
|
|
|
2003-01-13 23:35:18 +00:00
|
|
|
|
# The user can also redefine this default converter, placing their
|
|
|
|
|
# replacement in ~/.lyx/scripts
|
2003-08-22 10:50:02 +00:00
|
|
|
|
|
2003-01-13 23:35:18 +00:00
|
|
|
|
# converts an image from $1 to $2 format
|
2004-10-01 15:12:03 +00:00
|
|
|
|
convert -depth 8 "$1" "$2" || {
|
2005-04-17 17:31:15 +00:00
|
|
|
|
echo "$0 ERROR" >&2
|
|
|
|
|
echo "Execution of \"convert\" failed." >&2
|
2003-11-03 12:31:40 +00:00
|
|
|
|
exit 1
|
|
|
|
|
}
|