added image and imagemagick command

This commit is contained in:
2025-01-27 16:25:50 +01:00
parent 76a28abdc8
commit bcf8dd40ff
3 changed files with 8 additions and 3 deletions

View File

@@ -4,6 +4,12 @@
```bash
magick source.jpg -strip -interlace Plane -gaussian-blur 0.05 -quality 85% result.jpg
```
* Also resizes the image to 800 width
```bash
magick customising_mkdocs.jpg -strip -interlace Plane -gaussian-blur 0.05 -quality 85% -resize 800x customising_mkdocs.jpg
```
* [command source](https://stackoverflow.com/questions/7261855/recommendation-for-compressing-jpg-files-with-imagemagick)
* [image resizing](https://legacy.imagemagick.org/Usage/resize/)