Quote: "Confused, to save two images as one means merging them into one image?"
Exactly..!! That is the way.
Imagine that we have an image with a tree...just a tree and the rest of image is pure black. This image is ...let say 100*100 ,and we want to paste into another image let say 100*100 (second image could be bigger). We can do this with a FOR/NEST ...
load image "somb1.bmp",1
load image "somb2.bmp",2
paste image 1,0,0
paste image 2,100,0
for x= 0 to 100
for y= 0 to 100
col=point(x,y)
if col>0 then dot 100+x,y,col
next y
next x
endif
get iamge 3,0,0,100,100,1
....
The cromakey could be any colour, so instead of blue I have use just black in this example. We copy every pixel that its value is higher than 0 (black), and paste just 100 units on the second image...lastly we get the third image..
Cheers.
I'm not a grumpy grandpa
