mirror of
https://gitlab.waag.org/make/fablab/interns/2025/sam.git
synced 2025-08-04 04:14:56 +00:00
51 lines
2.2 KiB
Markdown
51 lines
2.2 KiB
Markdown
# ImageMagick
|
|
|
|
## What is ImageMagick and why use it?
|
|
ImageMagick is a tool to resize, convert or compress images. You can do all sorts of things with it. But right now we will be using it to compress images. So other people don't have to download hunderds of megabytes when cloning your project or viewing your website. Using this is also way faster than opening photoshop for every image you make.
|
|
|
|
## How do I install it?
|
|
ImageMagick can be installed on arch based systems using:
|
|
```bash
|
|
sudo pacman -Syu imagemagick
|
|
```
|
|
|
|
## How do I use it?
|
|
ImageMagick is a CLI tool so you need to use some kind of terminal. On arch based systems you can use it by typing `magick` after you've installed it.
|
|
A ImageMagick command is build up with a input and a output and in between all the parameters for the conversion. Example:
|
|
```bash
|
|
magick imageInput.jpg -strip -quality 80% imageOutput.jpg
|
|
```
|
|
|
|
## Image compression command examples
|
|
This image compresses the image and strips it of all it's details like date and location.
|
|
```bash
|
|
magick source.jpg -strip -interlace Plane -gaussian-blur 0.05 -quality 85% result.jpg
|
|
```
|
|
|
|
Same as above but resizes the image to 800 width and keeps the aspect ratio.
|
|
```bash
|
|
magick source.jpg -strip -interlace Plane -gaussian-blur 0.05 -quality 85% -resize 800x result.jpg
|
|
```
|
|
|
|
### How to make a image smaller
|
|
```bash
|
|
convert input.jpg -resize 20% small.jpg
|
|
```
|
|
Where 20% is placed you could also place anything else, For example 800x800 or just 800x then it will keep the aspect ratio.
|
|
|
|
### Batch conversion
|
|
For this project I take a lot of pictures and I don't wanna convert them one by one so i use this command to convert them all at the same time. Warning: It overwrites the files so make backups.
|
|
|
|
```bash
|
|
mogrify -size 800x -strip -quality 85% -format jpg *.png
|
|
```
|
|
|
|
## Rules for uploading images to git
|
|
Use jpg's instead of png. Jpg's are compressed and way smaller. Try to keep images under 200 kilobytes.
|
|
|
|
## Sources
|
|
* [installing ImageMagick](https://imagemagick.org/script/download.php)
|
|
* [command source](https://stackoverflow.com/questions/7261855/recommendation-for-compressing-jpg-files-with-imagemagick)
|
|
* [image resizing](https://legacy.imagemagick.org/Usage/resize/)
|
|
|