ImageMagick

# Resize image
convert -resize 50% -quality 80 input.jpg output.jpg
 
# Convert color to gray
convert <input> -colorspace Gray <output>
convert <input> -type Grayscale <output>

No votes yet