image: Fix crash when using llight themes and gif images. Closes #196

This commit is contained in:
Dylan Araps 2018-03-15 13:26:51 +11:00
parent 50e880f6d4
commit da9226a8c4

View File

@ -15,6 +15,7 @@ def imagemagick(color_count, img, magick_command):
"""Call Imagemagick to generate a scheme."""
flags = ["-resize", "25%", "-colors", str(color_count),
"-unique-colors", "txt:-"]
img += "[0]"
return subprocess.check_output([*magick_command, img, *flags]).splitlines()