Page 1 of 1

Posted: 2006-07-26T16:21:41-07:00
by magick
You found a bug. We have a patch in ImageMagick 6.2.8-6 Beta which will be available by tommorrow. A release version will be available within a week.

Posted: 2006-07-27T07:59:50-07:00
by magick
6.2.8-6 is available now with the patch to fix the problem you posted.

ReplaceImageInList() should work although we normally create a new image list and append images to it and destroy the old image list:
  • new_list=NewImageList();
    ...
    AppendImageToList(&new_list,image);
    ...
    DestroyImageList(images);
    *images=new_list;