$ convert -size 1024x2048 xc:blue largeblue.jpg
$ identify -format "Größe: %wx%h\n" largeblue.jpg
Größe: 1024x2048
$ convert -size 512x1024 largeblue.jpg smallblue.jpg
$ identify -format "Größe: %wx%h\n" smallblue.jpg
Größe: 512x1024
$ convert -size 600x1200 largeblue.jpg smallblue.jpg
$ identify -format "Größe: %wx%h\n" smallblue.jpg
Größe: 512x1024
$ convert largeblue.jpg -resize 600x1200 smallblue.jpg
$ identify -format "Größe: %wx%h\n" smallblue.jpg
Größe: 600x1200