Search found 3 matches
- 2016-10-03T10:50:00-07:00
- Forum: Users
- Topic: Resize, crop, and splice multiple image files
- Replies: 4
- Views: 6385
Re: Resize, crop, and splice multiple image files
magick "C:\Program Files\ImageMagick\images\01.jpg" -crop 1800x600 "C:\Program Files\ImageMagick\images\half01.jpg" magick "C:\Program Files\ImageMagick\images\02.jpg" -crop 1800x600 "C:\Program Files\ImageMagick\images\half02.jpg" magick "C:\Program Files\ImageMagick\images\03.jpg" -crop 1800x600 ...
- 2016-10-01T02:19:54-07:00
- Forum: Users
- Topic: Installed ImageMagick...now what?
- Replies: 2
- Views: 1926
Installed ImageMagick...now what?
Just installed ImageMagick-7.0.3-1-Q16-x64-dll.exe on Windows 10.
I have no idea how to execute command line functions and I've already tried searching the community board with no results...am I missing something?
I have no idea how to execute command line functions and I've already tried searching the community board with no results...am I missing something?
- 2016-09-29T11:30:57-07:00
- Forum: Users
- Topic: Resize, crop, and splice multiple image files
- Replies: 4
- Views: 6385
Resize, crop, and splice multiple image files
I have 10 images in the same folder: 01.jpg 02.jpg ... 10.jpg I need a batch file to do the following: 1) Resize all to 1800(w)x1200(h)px. 2) Split all images horizontally (1800x600px) to create a top and bottom half of each image (top01.jpg, bot01.jpg...,top10.jpg, bot10.jpg). 3) Merge halves to ...