[
About ImageMagick
] [ Command-line Tools Processing Options Usage Program Interfaces MagickWand MagickCore PerlMagick Magick++ Architecture ] [ Install from Source Unix Windows Binary Releases Unix Mac OS X Windows Resources ] [ Download ] [ Site Map Links ] [ Sponsors: ] |
CompositeImageChannel() returns the second image composited onto the first at the specified offsets. The format of the CompositeImageChannel method is: MagickBooleanType CompositeImage(Image *image, const CompositeOperator compose,Image *composite_image, const long x_offset,const long y_offset) MagickBooleanType CompositeImageChannel(Image *image, const ChannelType channel,const CompositeOperator compose, Image *composite_image,const long x_offset,const long y_offset) A description of each parameter follows: imagethe image. channelthe channel. composeThis operator affects how the composite is applied to the image. The operators and how they are utilized are listed here http://www.w3.org/TR/SVG12/#compositing. composite_imagethe composite image. x_offsetthe column offset of the composited image. y_offsetthe row offset of the composited image. |