Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. convert gif/$1.gif -background Black -flatten -fill Black -opaque White \( -clone 0 -fill Black +opaque "#080808" -fill White -opaque "#080808" \) \( -clone 0 -fill Black +opaque "#060606" -fill White -opaque "#060606" \) -delete 0 -compose Lighten -composite temp0.png
  2. convert temp0.png -morphology Dilate Square:1 temp1.png
  3. convert gif/$1.gif -background Black -flatten -fill Black +opaque "#212121" -fill White -opaque "#212121" temp2.png
  4. convert temp1.png temp2.png -compose Darken -composite temp3.png
  5. convert gif/$1.gif -alpha Extract -negate temp4.png
  6. convert temp3.png temp4.png -compose Lighten -composite temp5.png
  7. convert gif/$1.gif \( temp5.png -negate \) -compose CopyOpacity -composite temp6.png
  8. convert temp6.png -alpha Extract -negate temp7.png
  9. convert temp7.png temp0.png -compose Lighten -composite temp8.png
  10. convert temp6.png \( temp8.png -negate \) -compose CopyOpacity -composite temp9.png
  11. convert temp9.png -alpha Extract temp10.png
  12. convert temp10.png -morphology EdgeOut Diamond:1 -fill "#000002" -opaque "#FFFFFF" -transparent "#000000" temp11.png
  13. convert -composite temp9.png temp11.png temp12.png
  14. convert temp12.png -trim png/$1.png
  15. rm temp*.png
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement