Search found 4 matches

by henry_neves7
2017-04-06T04:53:59-07:00
Forum: Users
Topic: Achieving this layout 2x2 but then with a layer on top in the middle
Replies: 6
Views: 3587

Re: Achieving this layout 2x2 but then with a layer on top in the middle

Great!! That and making the border colour transparent has achieved the exact thing I wanted.

Thanks so much for your help :)
by henry_neves7
2017-04-06T04:32:54-07:00
Forum: Users
Topic: Achieving this layout 2x2 but then with a layer on top in the middle
Replies: 6
Views: 3587

Re: Achieving this layout 2x2 but then with a layer on top in the middle

Also, if I wanted to add a tiled image as a background to this, would I need to do a montage and then compose the rest over the top?

I've tried using -tile x1 but it's saying it can't open the file.

Thanks
by henry_neves7
2017-04-06T03:50:25-07:00
Forum: Users
Topic: Achieving this layout 2x2 but then with a layer on top in the middle
Replies: 6
Views: 3587

Re: Achieving this layout 2x2 but then with a layer on top in the middle

Thank you so much!

This was the final code that got the desired output:

convert \( image-1.png image-2.png -bordercolor white -border 20 +append \) \
\( image-3.png image-4.png -bordercolor white -border 20 +append \) \
\-append \
\image-5.png \
-gravity center -compose over -composite ...
by henry_neves7
2017-04-06T03:06:47-07:00
Forum: Users
Topic: Achieving this layout 2x2 but then with a layer on top in the middle
Replies: 6
Views: 3587

Achieving this layout 2x2 but then with a layer on top in the middle

Hi there

I'm very new to ImageMagick so please excuse my ignorance.

I'm trying to achieve this layout: https://www.dropbox.com/s/3p7ir297q2exqbd/layout-2.png?dl=0

What I've got so far is this:
convert \( image-1.png image-2.png -bordercolor white -border 20 +append \) \
\( image-3.png image-4 ...