GithubHelp home page GithubHelp logo

images-5's Introduction

# Convert to PNG
magick mogrify -format png *.jpg
magick mogrify -format png -resize x1000 *.svg
inkscape -w 1024 -h 1024 input.svg --export-filename output.png

# Resize to uniform height
magick mogrify -resize x300 -quality 100 -path ./resized *.png

# Cut circle
find . -name *.png -exec sh -c 'convert {} -alpha on \( +clone -threshold -1 -negate -fill white -draw "circle 150,150 150,0" \) -compose copy_opacity -composite {}' sh \;
find . -name "*.jpg" -exec sh -c 'convert {} -alpha on \( +clone -threshold -1 -negate -fill white -draw "circle 150,150 150,0" \) -compose copy_opacity -composite ${1%.jpg}.png' sh {} \;

# Drop shadow
find . -name "*.png.png" -exec sh -c 'convert {} \( +clone -background black -shadow 60x5+10+10 \) +swap -background white -layers merge +repage ${1%}.jpg' sh {} \;

# Avatar
find . -name "*.png" -exec sh -c 'convert {} -background "#333333" -gravity center -extent 425x425 ${1%}-avatar.png' sh {} \;

convert <file>.jpg \( +clone -background black -shadow 60x5+10+10 \) +swap -background white -layers merge +repage <output>.jpg

images-5's People

Contributors

matkoch avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.