首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

ImagickDraw::setVectorGraphics

(PECL imagick 2.0.0)

ImagickDraw::setVectorGraphics — Sets the vector graphics

Description

代码语言:javascript
复制
bool ImagickDraw::setVectorGraphics ( string $xml )

Warning

This function is currently not documented; only its argument list is available.

Sets the vector graphics associated with the specified ImagickDraw object. Use this method with ImagickDraw::getVectorGraphics() as a method to persist the vector graphics state.

Parameters

xml

xml containing the vector graphics

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #1 ImagickDraw::setVectorGraphics()

代码语言:javascript
复制
<?php
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();
}

?>

← ImagickDraw::setTextUnderColor

ImagickDraw::setViewbox →

代码语言:txt
复制
 ? 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com