How to go about everything.

MagickWand for PHP is an object-oriented PHP interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning MagickWand for PHP.
Post Reply
vinodkalpaka

Re: How to go about everything.

Post by vinodkalpaka »

Please try this.

$magick_wand=NewMagickWand();
MagickReadImage($magick_wand,mainimage.png');

$magick_wand1=NewMagickWand();
MagickReadImage($magick_wand1,'secondimage.png');

MagickCompositeImage( $magick_wand,$magick_wand1,MW_AtopCompositeOp , 10, 10 ) ;
MagickEchoImageBlob( $magick_wand );
mohanraj

Re: How to go about everything.

Post by mohanraj »

Can anyone please tell me how to install and configure magicwand for php
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: How to go about everything.

Post by Bonzo »

You can use ImageMagick direct from php, check out my site for some information.
Post Reply