mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
configure: for EPS to PNG, ask ImageMagick to only consider the first image.
Issue discussed in the mailing list: when the EPS contains several images (Adobe Photoshop exports two of them, one being a low-quality TIFF for preview), two files are generated, none with the existing name (prefix: -0 and -1). Hence, LyX thought that there was an error.
This commit is contained in:
parent
df59649a18
commit
faf0e9ee13
@ -1174,7 +1174,7 @@ def checkConverterEntries():
|
|||||||
checkProg('an EPS -> PDF converter', ['epstopdf'],
|
checkProg('an EPS -> PDF converter', ['epstopdf'],
|
||||||
rc_entry = [ r'\converter eps pdf6 "epstopdf --outfile=$$o $$i" ""'])
|
rc_entry = [ r'\converter eps pdf6 "epstopdf --outfile=$$o $$i" ""'])
|
||||||
#
|
#
|
||||||
checkProg('an EPS -> PNG converter', ['magick $$i $$o', 'convert $$i $$o'],
|
checkProg('an EPS -> PNG converter', ['magick $$i[0] $$o', 'convert $$i[0] $$o'],
|
||||||
rc_entry = [ r'\converter eps png "%%" ""'])
|
rc_entry = [ r'\converter eps png "%%" ""'])
|
||||||
#
|
#
|
||||||
# no agr -> pdf6 converter, since the pdf library used by gracebat is not
|
# no agr -> pdf6 converter, since the pdf library used by gracebat is not
|
||||||
|
Loading…
Reference in New Issue
Block a user