本文整理汇总了PHP中ImagickDraw::getVectorGraphics方法的典型用法代码示例。如果您正苦于以下问题:PHP ImagickDraw::getVectorGraphics方法的具体用法?PHP ImagickDraw::getVectorGraphics怎么用?PHP ImagickDraw::getVectorGraphics使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ImagickDraw
的用法示例。
在下文中一共展示了ImagickDraw::getVectorGraphics方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ImagickDraw
<?php
$draw = new ImagickDraw();
$svg = <<<SVG
<svg widthxmlns="http://www.w3.org/2000/svg" version="1.1">
<rect width="300"
height="100"
style="fill:rgb(0,0,255);stroke-width:1;stroke:rgb(0,0,0)" />
</svg>
SVG;
$draw->setVectorGraphics($svg);
var_dump($draw->getVectorGraphics());
try {
$draw->setVectorGraphics('invalid-svg');
} catch (Exception $ex) {
var_dump('setVectorGraphics');
}
示例2: setVectorGraphics
function setVectorGraphics()
{
//Setup a draw object with some drawing in it.
$draw = new \ImagickDraw();
$draw->setFillColor("red");
$draw->circle(20, 20, 50, 50);
$draw->setFillColor("blue");
$draw->circle(50, 70, 50, 50);
$draw->rectangle(50, 120, 80, 150);
//Get the drawing as a string
$SVG = $draw->getVectorGraphics();
//$svg is a string, and could be saved anywhere a string can be saved
//Use the saved drawing to generate a new draw object
$draw2 = new \ImagickDraw();
//Apparently the SVG text is missing the root element.
$draw2->setVectorGraphics("<root>" . $SVG . "</root>");
$imagick = new \Imagick();
$imagick->newImage(200, 200, 'white');
$imagick->setImageFormat("png");
$imagick->drawImage($draw2);
header("Content-Type: image/png");
echo $imagick->getImageBlob();
}