WORKFLOW
Combine Multiple Images
Make a single image from multiple images by collaging, overlaying or assembling an array of image components.
Into a Collage...
Make a collage from a collection of images:
ImageCollage[{[image], [image], [image], [image]}]Assign relative weights to the images:
ImageCollage[{10 -> [image], 4 -> [image], 1 -> [image], 1 -> [image]}]By Overlaying...
Overlay an image with a second image:
ImageCompose[[image], [image]]- If the background of the overlaid image is not transparent, it will obscure the image below. Use the option setting Background->None with Graphics and Rasterize to make images with transparent backgrounds.
Specify the position of the overlaid image:
ImageCompose[[image], [image], Scaled[{3 / 4, 3 / 4}]]From an Array of Image Components...
Combine an array of images into a single image:
ImageAssemble[{
{[image], [image], [image]},
{[image], [image], [image]}
}]- Component images must all be the same size.
Related Workflows
Related Functions
ImageCollage ImageCompose ImageAssemble Rasterize Scaled Background