Hello there,
As you might have guessed... I have a problem. I'm trying to make a simple composite of two images in Gem, a still and a video stream. On the I use pix alpha to make part of the image transparant, on the second I do nothing. Then I composite them together using pix_composite.
The problem is that I want to make the first image smaller or bigger. If I just resize it using pix_resize, the two don't match in size anymore and Pix composite wants them to be the same size. The only solution I've found so far is to first first use pix_crop to isolate the part of the image I want and then use resize to scale it back up to the size it needs to be for the composite. This works, but slows everything down beyond usability.
I tried to put a scale object after the first image, but this scales up both images and I only want to scale that first layer.
Any ideas?
much thanks