Custom image filter handling multiple input images
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:
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;