mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +00:00
fix bug 2418
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@16748 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
3854ea161a
commit
ca14e53a6f
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
# converts an image from $1 to $2 format
|
# converts an image from $1 to $2 format
|
||||||
import os, sys
|
import os, sys
|
||||||
if os.system(r'convert -depth 8 "%s" "%s"' % (sys.argv[1], sys.argv[2])) != 0:
|
if os.system(r'convert -define pdf:use-cropbox=true -depth 8 "%s" "%s"' % (sys.argv[1], sys.argv[2])) != 0:
|
||||||
print >> sys.stderr, sys.argv[0], 'ERROR'
|
print >> sys.stderr, sys.argv[0], 'ERROR'
|
||||||
print >> sys.stderr, 'Execution of "convert" failed.'
|
print >> sys.stderr, 'Execution of "convert" failed.'
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
Loading…
Reference in New Issue
Block a user