|
|
|||
|
|
ImageCompose |
| ImageCompose[image, overlay] gives the result of overlaying obj onto image. |
| ImageCompose[image, {overlay, gives the result of alpha-blending overlay into image using blending fraction |
| ImageCompose[image, overlay, pos] places the center of overlay at position pos in image. |
| ImageCompose[image, overlay, pos, opos] places the point opos in overlay at position pos in image. |
| ImageCompose[image, overlay, pos, opos, {fi, fo, mode}] uses the compositing fractions fk and the specified compositing mode. |
| {x,y} | absolute pixel offset from the bottom-left corner | |
| Scaled[{sx,sy}] | scaled position from 0 to 1 across the object | |
| {posx,posy} | named x and y positions |
| {1,1,1} | object "over" image (default) | |
| {0,1,1} | object "atop" image | |
| {1,0,1} | object | |
| {0,0,1} | object "in" image | |
| {1,1,0} | "xor" operation | |
| {0,1,0} | image "out" object | |
| {1,0,0} | object "out" image | |
| {0,0,0} | "clear" image | |
| {1,1,-1} | image "over" object | |
| {0,1,-1} | image | |
| {1,0,-1} | image "atop" object | |
| {0,0,-1} | image "in" object |