Search found 11 matches
- 2018-02-09T11:18:57-07:00
- Forum: Users
- Topic: Quickly merging 2 select files side by side through windows context menu?
- Replies: 22
- Views: 71743
Re: Quickly merging 2 select files side by side through windows context menu?
So... that first script, would it be possible to make it to merge two gif files side by side? "magick %1 %2 -resize "x%%[fx:max(v.h,u.h)]" +append file.png" I tried to twerk it a little bit (like changing the command to ".gif" ), but it ended up combining all the images inside each gif side by side ...
- 2018-02-08T03:51:09-07:00
- Forum: Users
- Topic: Quickly merging 2 select files side by side through windows context menu?
- Replies: 22
- Views: 71743
Re: Quickly merging 2 select files side by side through windows context menu?
Thank you so much, it worked perfectly!
- 2018-02-07T16:39:41-07:00
- Forum: Users
- Topic: Quickly merging 2 select files side by side through windows context menu?
- Replies: 22
- Views: 71743
Re: Quickly merging 2 select files side by side through windows context menu?
Is there a question here? Ok, since you asked.. I'm trying to not abuse of you guy's patience but... would it be possible to automatically, instead of just merging them and keeping their original height or width, to create a new image with a height and width already defined, and to merge them side ...
- 2018-02-06T23:42:30-07:00
- Forum: Users
- Topic: Quickly merging 2 select files side by side through windows context menu?
- Replies: 22
- Views: 71743
Re: Quickly merging 2 select files side by side through windows context menu?
"+append" appends horizontally. "-append" appends vertically. You would adjust the width instead of the height: -resize "%%[fx:max(u.w,v.w)]x" The "-resize" normally takes two numbers, like 23x34. for width and height. You are supplying only one, so IM calculates the other. https://78.media.tumblr ...
- 2018-02-06T22:28:05-07:00
- Forum: Users
- Topic: Quickly merging 2 select files side by side through windows context menu?
- Replies: 22
- Views: 71743
Re: Quickly merging 2 select files side by side through windows context menu?
Just a little last question, and I promise I stop bothering you guys... what if I wanted to merge two images one above the other and do this same resizing?
- 2018-02-06T22:23:08-07:00
- Forum: Users
- Topic: Quickly merging 2 select files side by side through windows context menu?
- Replies: 22
- Views: 71743
- 2018-02-06T22:12:09-07:00
- Forum: Users
- Topic: Quickly merging 2 select files side by side through windows context menu?
- Replies: 22
- Views: 71743
Re: Quickly merging 2 select files side by side through windows context menu?
Ok, we are getting closer. The problem seems be with that "-resize "x%%[fx:max(u.h,v.h)]" part, I tried without it, and it worked like a charm, but it didn't resized the image, of course. https://i.imgur.com/UEOcktG.png When I tried with the resize command: magick %1 %2 -resize "x%%[fx:max(u.h,v.h ...
- 2018-02-06T20:58:55-07:00
- Forum: Users
- Topic: Quickly merging 2 select files side by side through windows context menu?
- Replies: 22
- Views: 71743
Re: Quickly merging 2 select files side by side through windows context menu?
Ok, I made the adjustments that you guys said, the script it's now able to recognize the name of the files that I selected, but the following message is appearing: https://i.imgur.com/y7f1r5l.png It's seems that it's a problem with the resize specifications, probably something that I didn't ...
- 2018-02-06T19:36:45-07:00
- Forum: Users
- Topic: Quickly merging 2 select files side by side through windows context menu?
- Replies: 22
- Views: 71743
- 2018-02-06T18:27:17-07:00
- Forum: Users
- Topic: Quickly merging 2 select files side by side through windows context menu?
- Replies: 22
- Views: 71743
Re: Quickly merging 2 select files side by side through windows context menu?
I'm using version 7.0. What should I do with this comandy exactly? "magick image1 image2 -resize "x%%[fx:max(u.h, v.h)]" +append result" I tried to creat a bat file with it and put it "Send to", but it doesn't seem to be work. Or at least, it's not working as I imagine, to explain better what I ...
- 2018-02-06T17:21:19-07:00
- Forum: Users
- Topic: Quickly merging 2 select files side by side through windows context menu?
- Replies: 22
- Views: 71743
Quickly merging 2 select files side by side through windows context menu?
So... I was wanting to create a command to quickly merge two selected images side by side (automatically adjusting their height, if there's any diference), and merging them. For instance, I would select two images in the desktop and merge them. It seems that it's possible to do this using Windows ...