]> git.lyx.org Git - features.git/commitdiff
fix bug 2418
authorUwe Stöhr <uwestoehr@web.de>
Thu, 18 Jan 2007 01:03:23 +0000 (01:03 +0000)
committerUwe Stöhr <uwestoehr@web.de>
Thu, 18 Jan 2007 01:03:23 +0000 (01:03 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16741 a592a061-630c-0410-9148-cb99ea01b6c8

lib/scripts/convertDefault.py

index 075fb4aa03ee160b48cb05cf5ca01c11d1200d87..817fffb7d4ff4b1667e76591bb8ef398b8bf1a0a 100644 (file)
@@ -18,7 +18,7 @@
 
 # converts an image from $1 to $2 format
 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, 'Execution of "convert" failed.'
     sys.exit(1)