how do i create two thumbnail within single command?
how do i create two thumbnail within single command?
i need to create two thumbnail in different size from a large image. it's possible to do it within single command?
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: how do i create two thumbnail within single command?
try
convert image \( +clone -thumbnail W1xH1 -write image_thumb1 \) -thumbnail W2xH2 image_thumb2
see http://www.imagemagick.org/Usage/basics/#parenthesis
if you are on windows see http://www.imagemagick.org/Usage/windows/
convert image \( +clone -thumbnail W1xH1 -write image_thumb1 \) -thumbnail W2xH2 image_thumb2
see http://www.imagemagick.org/Usage/basics/#parenthesis
if you are on windows see http://www.imagemagick.org/Usage/windows/