Per creare un'opzione cli "user friendly", è possibile utilizzare lo script seguente. Basta eseguire il comando:
<script> <image> <crop_left> <crop_right> <crop_top> <crop_bottom>
Crea un'immagine ritagliata di image.jpeg
, denominata image[cropped].jpeg
nella stessa directory.
Il copione
#!/usr/bin/env python3
import subprocess
import sys
# image, crop- dimensions
img = sys.argv[1]; left = sys.argv[2]; right = sys.argv[3]; top = sys.argv[4]; bottom = sys.argv[5]
# arrange the output file's name and path
img_base = img[:img.rfind(".")]; extension = img[img.rfind("."):]; path = img[:img.rfind("/")]
img_out = img_base+"[cropped]"+extension
# get the current img' size
data = subprocess.check_output(["identify", img]).decode("utf-8").strip().replace(img, "")
size = [int(n) for n in data.replace(img, "").split()[1].split("x")]
# calculate the command to resize
w = str(size[0]-int(left)-int(right)); h = str(size[1]-int(top)-int(bottom)); x = left; y = top
# execute the command
cmd = ["convert", img, "-crop", w+"x"+h+"+"+x+"+"+y, "+repage", img_out]
subprocess.Popen(cmd)
Come usare
Lo script usa imagemagick
sudo apt-get install imagemagick
Salvare lo script sopra come crop_image
(nessuna estensione) in ~/bin
.
- Creare la directory se necessario. In tal caso, eseguire anche
source ~/.profile
per visualizzare la directory $PATH
.
- Rendi eseguibile lo script.
Ora esegui semplicemente lo script con il suo nome, come detto, ad esempio:
crop_image /path/to/image.jpg 20 30 40 50
Gli spazi non sono un problema, purché in quel caso usi le virgolette:
crop_image '/path/with spaces in the name/to/image.jpg' 20 30 40 50