Page 1 of 1

Posted: 2006-12-14T10:36:06-07:00
by magick
You need to show a leak is in PerlMagick before we can persue it as a bug. For example, this script using ImageMagick 6.3.1-1 does not show any leaks over 10,000 iterations:

Code: Select all

use Image::Magick;

$i = 0;

while ($i++ < 10000)
{
  my ($image) = Image::Magick->new();
  $x = $image->Read('logo:');
  warn $x if "$x";
  my(@statistics) = $image->Statistics();
}