We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When writing an animated gif, the convert command allows you to set a flag for how many times the gif should restart (with 0 = ∞):
convert
convert -loop 0 -delay 100 ... animation.gif
It's possible to set frame delays with Wand
for frame in img.sequence: with frame: frame.delay = 100
But there's no way to mess with the loop setting:
img.loop = 0 # Doesn't work, obviously
Is there some other way to set arbitrary ImageMagick options, or does this just not work?
The text was updated successfully, but these errors were encountered:
It seems possible to implement using MagickSetImageProperty() C API e.g. MagickSetImageProperty(wand, "loop", "0").
MagickSetImageProperty()
MagickSetImageProperty(wand, "loop", "0")
Sorry, something went wrong.
2d98308
No branches or pull requests
When writing an animated gif, the
convert
command allows you to set a flag for how many times the gif should restart (with 0 = ∞):It's possible to set frame delays with Wand
But there's no way to mess with the loop setting:
Is there some other way to set arbitrary ImageMagick options, or does this just not work?
The text was updated successfully, but these errors were encountered: