Lines Matching refs:draw
18 $draw = new \ImagickDraw();
19 setFontForImagickDraw($draw);
20 $draw->setStrokeColor($strokeColor);
21 $draw->setFillColor($fillColor);
22 $draw->setStrokeWidth(1);
23 $draw->setFontSize(36);
25 $draw->setTextAlignment(\Imagick::ALIGN_LEFT);
26 $draw->annotation(250, 75, "Lorem Ipsum!");
27 $draw->setTextAlignment(\Imagick::ALIGN_CENTER);
28 $draw->annotation(250, 150, "Lorem Ipsum!");
29 $draw->setTextAlignment(\Imagick::ALIGN_RIGHT);
30 $draw->annotation(250, 225, "Lorem Ipsum!");
31 $draw->line(250, 0, 250, 500);
36 $imagick->drawImage($draw);