mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2025-04-20 06:48:05 +02:00
13 lines
379 B
Bash
Executable File
13 lines
379 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# SPDX-FileCopyrightText: 2025 Aminda Suomalainen <suomalainen@aminda.eu>
|
|
#
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
# Pass the original filename as an argument to this script and it will do the
|
|
# rest!
|
|
|
|
magick "$1" -resize "250x250" -quality 100 "250.jpeg"
|
|
magick "$1" -resize "128x128" -quality 100 "128.jpeg"
|
|
magick "$1" -resize "90x90" -quality 100 "90.jpeg"
|