Search found 11 matches

by ericpa06
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: 70064

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...
by ericpa06
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: 70064

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 ...
by ericpa06
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: 70064

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 calcul...
by ericpa06
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: 70064

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?
by ericpa06
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: 70064

Re: Quickly merging 2 select files side by side through windows context menu?

snibgo wrote: 2018-02-06T22:19:49-07:00 You have one quote. Quotes normally come in pairs.
Ops, silly me :lol:

I just tried and it worked like a charm now! Thank you so much guys, especially for your patience. I was looking for some way to do this function for several months :)

Image
by ericpa06
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: 70064

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 "...
by ericpa06
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: 70064

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 specifie...
by ericpa06
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: 70064

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,...
by ericpa06
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: 70064

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 &q...