Opengist

Explore

  • All gists
  • Topics
  • Users
Give feedback on the new UI Powered by Opengist ⋅ 13ms

user:thomas gists created by user

title:mygist gists with given title

description:sync gists with given description

filename:myfile.txt gists having files with given name

extension:yml gists having files with given extension

language:go gists having files with given language

topic:homelab gists with given topic

all:systemctl search all fields

Login
i

image

Recently created Least recently created Recently updated Least recently updated

airikr / Compress images

Last active 3 months ago image linux

Use this command to compress an image and strip all metadata from it.

0 0 1
1 function reduceimage {
2 magick "$1" \
3 -resize "${2:-2000}x${2:-2000}>" \
4 -strip \
5 -quality 45 \
6 -define webp:lossless=false \
7 "${1%.*}-r.webp"
8 }