hhatto / pgmagick

pgmagick is a yet another boost.python based wrapper for GraphicsMagick/ImageMagick.
MIT License
148 stars 33 forks source link

Add gravity as a top level function of Image to be used along with resize, etc. #68

Open arvindamirtaa opened 3 years ago

arvindamirtaa commented 3 years ago

In order to be able to do something like this

gm convert \
        "${input}" \
        -gravity center \
        -resize "${width}x${height}^" \
        -extent "${width}x${height}" \
        /tmp/$$.gm.jpg