Combine many image in one image with layers

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
ChristianK
Posts: 10
Joined: 2019-03-04T08:44:14-07:00
Authentication code: 1152

Combine many image in one image with layers

Post by ChristianK »

Hi,
Is it possible to combine 3 images in one with layers, save as TIFF ?
Images have the same file/resolution

Thanks in advance for your help,
Christian
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Combine many image in one image with layers

Post by snibgo »

I'm not sure what you want. You can save multiple images in a single TIFF file like this:

Code: Select all

magick a.png b.png c.png out.tiff
snibgo's IM pages: im.snibgo.com
ChristianK
Posts: 10
Joined: 2019-03-04T08:44:14-07:00
Authentication code: 1152

Re: Combine many image in one image with layers

Post by ChristianK »

Hi Snibgo,
Thanks for your help,
I want to save multiples images in a single TIFF file, but each image in a layer, do you think is it possible.
What you write didn't have layers in TIFF.
Regards,
Christian
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Combine many image in one image with layers

Post by snibgo »

IM can write multiple images, but not layers within an image.
snibgo's IM pages: im.snibgo.com
ChristianK
Posts: 10
Joined: 2019-03-04T08:44:14-07:00
Authentication code: 1152

Re: Combine many image in one image with layers

Post by ChristianK »

ok,
Thank You Snibgo
Post Reply