I know very little of image processing and even less of the terminology used, so please bear with me.

Basically, I want to merge two images together where one of them will act as a mask. That image looks something like this:
Example
Where the blue and yellow background are both transparent in reality.

This image is being used as a mask for regular photo's. Parts of the photo that 'stick out' of the circle need to be 'cropped' (be made invisible) while the inside remains visible.
So everything that comes in the blue area is invisible, everything in the yellow area is visible.

I honestly have no clue how to go about it so any help would be greatly appreciated!

Edit:
I use the API version of Imagick, not the commandline version

Edit:
To get a feel of what I want to achieve, here is an example.

The input images are thus:
enter image description here
This is the mask image, always the same

enter image description here
This is an example of a picture, dynamic

enter image description here
This is what the end result should look like

link|improve this question

80% accept rate
I really need an answer for this question. My knowledge is too limited to research it myself so that's why i'm starting a bounty. If the question needs to be improved i will gladly do that. – Dennis Haarbrink Jan 4 at 9:42
would the command line version help..? – Sudhir Jan 4 at 9:46
If it can't be done with the API, I would have to resort to the CLI, but I've got a strong favor towards the API version. – Dennis Haarbrink Jan 4 at 9:50
Do you want that black border to show on the final image? – Cicada Jan 4 at 10:49
@Cicada: See the edited question – Dennis Haarbrink Jan 4 at 11:04
show 2 more comments
feedback

4 Answers

up vote 15 down vote accepted
+200

So, finally, this should do what you need:

Original image:

http://i.stack.imgur.com/b7seR.png

Opacity mask:

enter image description here

Overlay:

http://i.stack.imgur.com/3ulkM.png

Output:

enter image description here

The code:

<?php
$base = new Imagick('U0R4F.png');
$mask = new Imagick('mask.png');
$over = new Imagick('3ulkM.png');

// Setting same size for all images
$base->resizeImage(274, 275, Imagick::FILTER_LANCZOS, 1);

// Copy opacity mask
$base->compositeImage($mask, Imagick::COMPOSITE_DSTIN, 0, 0, Imagick::CHANNEL_ALPHA);

// Add overlay
$base->compositeImage($over, Imagick::COMPOSITE_DEFAULT, 0, 0);

$base->writeImage('output.png');
header("Content-Type: image/png");

echo $base;
?>

I hope it's right now! Note: In your example it looks like you downscaled the base image, which I didn't (my goal is just to show how the masking is done).

link|improve this answer
This looks promising! I will create a mask image and test this code. – Dennis Haarbrink Jan 4 at 11:17
Yeah I guess some scaling should occur. I'm gonna test the new code now. – Dennis Haarbrink Jan 4 at 12:45
1  
Great, this is almost perfect! One problem, any transparancy in the original image is converted to black. Is there a way to preserve the alpha channel? – Dennis Haarbrink Jan 4 at 13:00
Edited to fix a typo. – Cicada Jan 4 at 18:00
Thanks so much! This does exactly what is needed. All I need is proper scaling, but I think I can manage that by myself. You deserve the bonus! – Dennis Haarbrink Jan 5 at 7:46
show 3 more comments
feedback

Did you try this solution here as described by : http://stackoverflow.com/a/2351173/1093649 ?

Run this in your server (with the right image names!), and let us know, thanks.

nb : credits go to jspash

link|improve this answer
I had already found that one, but it doesn't really do what I want. The net effect of that answer is that the blue and yellow parts in the image stay transparent while the black border displays the 'background' image. – Dennis Haarbrink Jan 4 at 10:25
Too bad, can you attach the original images to your post? That way, we can get a better idea to where you are starting from. – Justin T. Jan 4 at 10:37
I have updated the question with sample input and output images. – Dennis Haarbrink Jan 4 at 11:05
feedback

http://www.imagemagick.org/Usage/compose/#dstin should do the trick, but you need to use images with alpha channels (that shouldn't be a problem).

Edit: in PHP you have to pass it (imagick::COMPOSITE_DSTIN) as a parameter in compositeimage. Other filters in Composite Operator Constants may also be useful to you.

link|improve this answer
This doesn't really help. Of course I've found the compose function, but I just don't know how to combine the tools available to create the result I need. – Dennis Haarbrink Jan 4 at 9:52
feedback

This type of masking is exampled using a number of different techniques in ImageMagick Examples, Thumbnails, Mask and Paint http://www.imagemagick.org/Usage/thumbnails/#mask_paint

Be warned however that the masking and the edges of the overlay image SHOULD NOT MATCH this is important or you may get problems with edge aliasing effects that is best avoided.

Extracting an alpha mask of the ring, can be done using morphology operators to thin it down to a centerline can be used to generate a mask for any random 'ring' shape. ImageMagick Examples, Skeletons by Thinning, and Pruning http://www.imagemagick.org/Usage/morphology/#thinning_skeleton

Anthony Thyssen Web Master for ImageMagick Examples, and Developer for ImageMagick

PS: nice photo from Elfling

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.