Get image details

$ magick identify -verbose image.jpg 

Without the -verbose flag, the command executes faster but displays far less information.

Get image color space

$ magick image.jpg -print "%[colorspace]\n" null:

Resize proportionately

$ magick original.png -resize 50% resized.jpg