debian-dependent bug in resize?

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
Marius

debian-dependent bug in resize?

Post by Marius »

Greetings.

I've got a server running Debian (2.6.26-2-686 last built on October 17th), Version: ImageMagick 6.5.7-1.
Using the resize function with the "^" delimiter to fill given area errors and leaves me with a broken image, but if I use any command without a "^" sign, the command works just fine.

The same command works on other servers not running Debian, which is why I am filing it in the bugs forum.
broucaries
Posts: 467
Joined: 2008-12-21T11:51:10-07:00

Re: debian-dependent bug in resize?

Post by broucaries »

Dear marius,

Could you fill a debian bug report please ? You could use for instance reportbug-ng command that is really nice for reporting debian bug.

Thank you

Bastien (the debian imagemagick developper)
Marius

Re: debian-dependent bug in resize?

Post by Marius »

Hi,

I've now done as you requested, thank you.
broucaries
Posts: 467
Joined: 2008-12-21T11:51:10-07:00

Re: debian-dependent bug in resize?

Post by broucaries »

Any news of this bug ?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: debian-dependent bug in resize?

Post by fmw42 »

have you tried either escaping the ^ (as \^) or putting the size in quotes

convert image -resize WidthxHeight\^ result

or

convert image -resize "WidthxHeight^" result
Post Reply