dos

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
littleputa
Posts: 6
Joined: 2017-11-15T00:52:05-07:00
Authentication code: 1152

dos

Post by littleputa »

im 7.0.7-12
poc url:https://github.com/littleputa/dos/files ... stfile.zip
reproduce:convert testfile /dev/null
the zip password was already sent to dlemstra by private messages
User avatar
dlemstra
Posts: 1570
Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:

Re: dos

Post by dlemstra »

The image has a large width and height and you can prevent that with a custom policy. Your command will take a while but at some point it will complete.
.NET + ImageMagick = Magick.NET https://github.com/dlemstra/Magick.NET, @MagickNET, Donate
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: dos

Post by magick »

Add this to your policy.xml file:

Code: Select all

  <policy domain="resource" name="width" value="8KP"/>
  <policy domain="resource" name="height" value="8KP"/>
Does that resolve your problem?
Post Reply