[solved] abort (core dumped) on EPS file

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
User avatar
benoliver999
Posts: 3
Joined: 2019-04-06T23:04:42-07:00
Authentication code: 1152

[solved] abort (core dumped) on EPS file

Post by benoliver999 »

I'm trying to run this command:

Code: Select all

convert -flop BabyTuX.eps BabyTuX.eps
But I just get a core dump:

Code: Select all

abort (core dumped)  convert -flop BabyTuX.eps BabyTuX.eps
I'm running Arch Linux on a ThinkPad x200. ImageMagick version:

Code: Select all

Version: ImageMagick 7.0.8-38 Q16 x86_64 2019-04-06 https://imagemagick.org
Copyright: © 1999-2019 ImageMagick Studio LLC
License: https://imagemagick.org/script/license.php
Features: Cipher DPC HDRI Modules OpenCL OpenMP 
Delegates (built-in): bzlib cairo fontconfig freetype gslib heic jbig jng jp2 jpeg lcms lqr ltdl lzma openexr pangocairo png ps raw rsvg tiff webp wmf x xml zlib
This is the EPS file from the muttprint package.

The command works fine on another PC so I'm worried it's just my old hardware...
Last edited by benoliver999 on 2019-04-07T13:21:44-07:00, edited 1 time in total.
User avatar
dlemstra
Posts: 1570
Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:

Re: abort (core dumped) on EPS file

Post by dlemstra »

Maybe this is related to this issue: https://github.com/ImageMagick/ImageMagick/pull/1538? Are you using GhostScript 9.27?
.NET + ImageMagick = Magick.NET https://github.com/dlemstra/Magick.NET, @MagickNET, Donate
User avatar
benoliver999
Posts: 3
Joined: 2019-04-06T23:04:42-07:00
Authentication code: 1152

Re: abort (core dumped) on EPS file

Post by benoliver999 »

Yes I am! I'll wait for the patch to make it my way.
User avatar
benoliver999
Posts: 3
Joined: 2019-04-06T23:04:42-07:00
Authentication code: 1152

Re: abort (core dumped) on EPS file

Post by benoliver999 »

Ok, I upgraded to 7.0.8-39 and it's fixed!
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: [solved] abort (core dumped) on EPS file

Post by fmw42 »

In ImageMagick 7, you should put read the EPS file before -flop. Order is more important for IM 7 than IM 6. Works fine for me on 7.0.8.39 Mac OSX

Code: Select all

magick BabyTuX.eps -flop x.eps
Post Reply