I was wondering if there is a way to make the cartoon script and other complicated scripts like that work on GIFs.
Code: Select all
convert.exe in.miff +repage -depth 8 -selective-blur 0x5+10% blur.miff
convert.exe blur.miff -level 0x70% -set colorspace RGB -set colorspace gray -posterize 6 -depth 8 -colorspace sRGB posterize.miff
convert.exe blur.miff
( posterize.miff -blur 0x1 )
( -clone 0 -clone 1 -compose over -compose multiply -composite -modulate 100,150,100 )
( -clone 0 -set colorspace RGB -colorspace gray )
( -clone 3 -negate -blur 0x2 )
( -clone 3 -clone 4 -compose over -compose colordodge -composite -evaluate pow 4 -threshold 90% -statistic median 3x3 )
-delete 0,1,3,4 -compose over -compose multiply -composite out.gif
Any help is appreciated.