Created
September 15, 2021 16:59
-
-
Save x86-39/08d5390325392bfe7b2257cced27d14a to your computer and use it in GitHub Desktop.
ImageMagick command to deep fry an image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
convert ${INPUT} \ | |
-sharpen 0x5.0 \ | |
-modulate 100,150 \ | |
-resize 50% \ | |
-resize 200% \ | |
-contrast \ | |
+noise poisson \ | |
-equalize \ | |
-sharpen 0x4.0 \ | |
-fill red -tint 90 \ | |
-fill yellow -tint 100 \ | |
-gamma 0.5 \ | |
${OUTPUT} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment