hi
I'm using MagickCore to create gif picture, the dispose method of every frame is 1 by default,
How can I change the dispose method ?
thanks
How can I change the dispose method of gif frame?
Re: How can I change the dispose method of gif frame?
With MagickCore you can set the image structure members directly, for example:
Code: Select all
image->dispose=BackgroundDispose;
status = WriteImage( image_info, image );