Search found 6 matches

by stvofficial
2016-05-12T12:23:17-07:00
Forum: Users
Topic: Image resizing via .bat file
Replies: 9
Views: 4114

Re: Image resizing via .bat file

If you want to overlay one image onto another, see http://www.imagemagick.org/Usage/layers/ http://www.imagemagick.org/Usage/compose/ magick backgroundimage foregroundimage -gravity XX -geometry +X+Y -compose over -composite resultimage see http://www.imagemagick.org/script/command-line-options.php ...
by stvofficial
2016-05-12T11:25:26-07:00
Forum: Users
Topic: Image resizing via .bat file
Replies: 9
Views: 4114

Re: Image resizing via .bat file

fmw42 wrote:You have to insert your own "image" path and filename there and specify your own "result" path and filename
Ah damn, thanks :D

One more question - is anyway to paste image on image? Thanks
by stvofficial
2016-05-12T10:21:08-07:00
Forum: Users
Topic: Image resizing via .bat file
Replies: 9
Views: 4114

Re: Image resizing via .bat file

The basic command is magick image -resize 1440x1440 result If you want to resize all images in a folder, then magick mogrify -resize 1440x1440 * but that will overwrite your input images. So create a new empty directory and add -path path2/newdirectory to put the output in that directory. See http ...
by stvofficial
2016-05-12T09:43:20-07:00
Forum: Users
Topic: Image resizing via .bat file
Replies: 9
Views: 4114

Re: Image resizing via .bat file

What do you want to happen if the input image is not square? Imagemagick can force the output to be square, but that may distort the image if it was not originally square. So you need to decide if you want to crop or pad. See the sections below http://www.imagemagick.org/Usage/thumbnails/#creation ...
by stvofficial
2016-05-12T09:40:31-07:00
Forum: Users
Topic: Image resizing via .bat file
Replies: 9
Views: 4114

Re: Image resizing via .bat file

All the time I gona have square images for resize.
I'm using "ImageMagick-7.0.1-Q16".
My platform is Windows.
by stvofficial
2016-05-12T08:14:09-07:00
Forum: Users
Topic: Image resizing via .bat file
Replies: 9
Views: 4114

Image resizing via .bat file

Hello everyone!
Can you help me with code, that will resize image to 1440*1440 px? Thanks!