ImagickDraw::push

(PECL imagick 2.0.0)

ImagickDraw::pushClones the current ImagickDraw and pushes it to the stack

说锟斤拷

ImagickDraw::push ( void ) : bool
Warning

锟斤拷锟斤拷锟斤拷锟斤拷未锟斤拷写锟侥碉拷锟斤拷锟斤拷锟叫诧拷锟斤拷锟叫憋拷

Clones the current ImagickDraw to create a new ImagickDraw, which is then added to the ImagickDraw stack. The original drawing ImagickDraw(s) may be returned to by invoking pop(). The ImagickDraws are stored on a ImagickDraw stack. For every Pop there must have already been an equivalent Push.

锟斤拷锟斤拷值

锟缴癸拷时锟斤拷锟斤拷 TRUE锟斤拷 锟斤拷锟斤拷锟斤拷失锟斤拷时锟斤拷锟斤拷 FALSE锟斤拷

锟斤拷锟斤拷

Example #1 ImagickDraw::push()

<?php
function push($strokeColor$fillColor$backgroundColor$fillModifiedColor) {

    
$draw = new \ImagickDraw();
    
$draw->setStrokeColor($strokeColor);
    
$draw->setFillColor($fillModifiedColor);
    
$draw->setStrokeWidth(2);
    
$draw->setFontSize(72);
    
$draw->push();
    
$draw->translate(5050);
    
$draw->rectangle(200200300300);
    
$draw->pop();
    
$draw->setFillColor($fillColor);
    
$draw->rectangle(200200300300);

    
$imagick = new \Imagick();
    
$imagick->newImage(500500$backgroundColor);
    
$imagick->setImageFormat("png");

    
$imagick->drawImage($draw);

    
header("Content-Type: image/png");
    echo 
$imagick->getImageBlob();
}

?>