🌈🦄 BRIE 🦄🌈
ImageMagick
Initializing search
    GitLab
    GitLab
    • Home
    • Blogs I Like
    • Emoji
    • ImageMagick
    • Inbox
    • 🌻 On Growing Sunflowers
    • 🎧 Podcasts!
    • Quotes
    • 🌵 Succulents 🌴
    • Prompts
    • 🤖🎨 Computer generated art prompts and responses 🎨🤖
      • June 2022
      • July 2022
      • August 2022
      • September 2022
      • October 2022
      • November 2022
      • December 2022
      • January 2023
      • Building Git
      • The State of Auth
      • Android Apps I Use and Recommend
      • Authentication
      • CodeLabs
      • Cool Stuff for Testing
      • Deploy to S3 in CI
      • 🐳 Docker Compose Excellence
      • FusionAuth
      • Google Cloud
      • GraphQL
      • Hevy API
      • Laptop Tweaks
      • Python Poetry
      • Self Signed Certificates
      • This Site
      • Toolbox
      • Fun with ffmpeg and friends
        • Citizen Developer
        • Orchestrating the Cloud with Kubernetes
        • Cloud SQL
        • Data Science in Google Cloud
        • Implement DevOps in Google Cloud
        • Manage PostgreSQL Databases on Cloud SQL

    The examples provided on imagemagick.org are awesome! Let's work through a few with some fun photos! More cats == better!

    Let's experiment with the coloring book example:

    magick 20220914_160244.jpg \
              -edge 1 -negate -normalize \
              -colorspace Gray -blur 0x.5 -contrast-stretch 0x50% \
              color-in.gif
    

    Let's use ImageMagick 7.

    magick holocaust_sm.jpg \
              -edge 1 -negate -normalize \
              -colorspace Gray -blur 0x.5 -contrast-stretch 0x50% \
              color-in.gif
      # For heavily shaded pictures...
      #     #-segment 1x1 +dither -colors 2 -edge 1 -negate -normalize \
    
    Made with Material for MkDocs