<?php
$sourceFile='in.jpg';
$textWrite='God is Great';
$x=50;
$y=50;
$fontColor='#000000';
$fontSize=34;
$colorPix=new ImagickPixel ($fontColor);
$image=new Imagick ($sourceFile);
$draw=new ImagickDraw();
$draw->setFontSize($fontSize);//Sets the font pointsize to use when annotating with text
$draw->setFillColor($colorPix);//Sets the fill color to be used for drawing filled objects
$image->annotateImage($draw,$x,$y,0,$textWrite);//Annotates an image with text
$image->writeImage('out.jpg');//Writes an image to the specified filename
?>